Keyword
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.

''Read More..'' link to module?

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137693 by Stephen B. Kiely-Jones
''Read More..'' link to module? was created by Stephen B. Kiely-Jones
Hi

I am using Tordea for a cat breeding website. I have added 6 images for the top slider and want slide 6 to connect to the Contact Us form. I have set this up on the MENU and it works but the ''Read More'' on slide 6 goes to a page (item).

The site is at: www.idxa.co.uk/ardeevan2014

Any suggestions gratefully received.

Many thanks

Stephen

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #137694 by Yiota
Replied by Yiota on topic ''Read More..'' link to module?
The slideshow works by default with K2 items. Therefore, you have two options. 1) is to just use the item the slide is currently linking to and put the contact us link in there, kind of pointless to walk your visitor through 2 clicks in order to see the contact, but it's an option and 2) you can modify the default.php file of the slideshow module located in templates/toreda/html/mod_k2_content/Slideshow and with a check for the proper slide add the menu link you have made as the title's and read more link. You can use the custom link from the module to carry the correct link of the contact form and use this one in the module's code.

Let me know if you need further help on the second option.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137695 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Yiota

Thanks for this reply.

I will try option 2 but my skills in editing PHP files are really non-existent.

I am learning as I build. What do I do once I am in the PHP file?

Many thanks

Stephen

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #137696 by Yiota
Replied by Yiota on topic ''Read More..'' link to module?
OK.

First you need to locate this code

<?php if($params->get('itemCustomLink')): ?>
<a class="moduleCustomLink" href="<?php echo $params->get('itemCustomLinkURL'); ?>" title="<?php echo K2HelperUtilities::cleanHtml($itemCustomLinkTitle); ?>"><?php echo $itemCustomLinkTitle; ?></a>
<?php endif; ?>

and comment it out.

Now all you have to do is to create a conditional statement that will apply to that specific 6th slide.

Replace the title link
<?php if($params->get('itemTitle')): ?>
    	      <h2 class="slideTitle">
    	      	<a class="moduleItemTitle" href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
    	      </h2>
    	      <?php endif; ?>
and the read more link
<?php if($params->get('itemReadMore') && $item->fulltext): ?>
            <a class="moduleItemReadMore btn transparent" href="<?php echo $item->link; ?>" title="<?php echo JText::_('K2_READ_MORE'); ?>">
              <span><?php echo JText::_('K2_READ_MORE'); ?></span>
            </a>
            <?php endif; ?>
with these block of codes one for each one
<?php if($params->get('itemTitle')): ?>
    	      <h2 class="slideTitle">
    	      	<a class="moduleItemTitle" href="<?php if($key+1==6) echo $params->get('itemCustomLinkURL'); else echo $item->link; ?>"><?php echo $item->title; ?></a>
    	      </h2>
    	      <?php endif; ?>
<?php if($params->get('itemReadMore') && $item->fulltext): ?>
            <a class="moduleItemReadMore btn transparent" href="<?php if($key+1==6) echo $params->get('itemCustomLinkURL'); else echo $item->link; ?>" title="<?php echo JText::_('K2_READ_MORE'); ?>">
              <span><?php echo JText::_('K2_READ_MORE'); ?></span>
            </a>
            <?php endif; ?>

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137697 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
You are EXCELLENT !
Thanks so much. I will try this tonight and let you know how it goes.

Many thanks

Stephen

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #137698 by Yiota
Replied by Yiota on topic ''Read More..'' link to module?
OK. Let me know.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137699 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Yiota

I have applied the new PHP as you have described but am now lost as to where the Title and Read More link for slide 6 is so that I can add the link to the Contact Form

Aslo how do I disable the Title link on slide 1 ?

Many thanks

Stephen

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago - 11 years 1 month ago #137700 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
Stephen I will need some more feedback from you.
I can provide the code for you but you have to know that this will apply to every 1st slide not that item.

Yiota's code allows you to use the K2 Content's module custom link. This option is located on the bottom of the module's parameters.
<?php if($params->get('itemTitle') && $key !=0): ?>
    	      <h2 class="slideTitle">
    	      	<a class="moduleItemTitle" href="<?php if($key+1==6) echo $params->get('itemCustomLinkURL'); else echo $item->link; ?>"><?php echo $item->title; ?></a>
    	      </h2>
    	      <?php endif; ?>

This will hide the title for the first slide.

Hint: I only added && $key !=0 to Yiota's code.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137701 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

I really appreciate your help!

I want the first slide to have no working link and the last slide to go to the Contact Us page (menu item) the other slides should still link to their own item pages.

Stephen

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137702 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
Hello Stephen,

For the last slide you have to do what I advised you in my last post. (Module's cusotm link).

Now for disabling the link and showing only the title disregard my last snippet. This will do the trick.
<?php if($params->get('itemTitle')): ?>
<h2 class="slideTitle">
	<?php if($key==0) :?>
	<?php echo $item->title; ?>
	<?php else: ?>
	<a class="moduleItemTitle" href="<?php if($key+1==6) echo $params->get('itemCustomLinkURL'); else echo $item->link; ?>"><?php echo $item->title; ?></a>	<?php endif; ?>	
</h2>
<?php endif; ?>

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137703 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

This is not working for me as my PHP knowledge is VERY limited :-(

I will go through your support message again tomorrow night incase I have got something wrong

Many thanks

Stephen

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137704 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
Let me know if you need any further assistance and which errors you are getting.

PS. Make sure to disable caching (and the module's cache as well) when doing these changes.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137705 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

This is now almost solved so thank you for all your help!

How do I stop the image on slide 1 being a link? I don't want this to be clickable at all.

It would be good to have "Welcome to my site etc" on slide 1 but not as a clickable link

The text on Slide 6 now links to the contact page but the image still links to the ITEM

Stephen

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137706 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
Stephen,

Can you send me the file (in a zip format)? Also please send me the image url you want to show at the 6th item.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137707 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

Sorry if I am not clear. The slides all have the images on them and this is OK.

On slide 1 and slide 6 I do not want the images clickable as this goes to the wrong item.

The text on Slide 6 now goes to the contact us form !!

Thanks

Stephen

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137708 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
OK got it!

I just need the default.php so we don't lose too much time on c/p code over the forum.

PS. I will strip the link on the first image but i can link the 6th image to the contact form if you wish.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137709 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

"/html/mod_k2_content/Slideshow/default.php" in template "toreda".

File attached

Contact Form is: www.idxa.co.uk/ardeevan2014/index.php/contact-us

Many thanks indeed



Stephen
Attachments:

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137710 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
Could you zip the php file and send it.
The rtf file is somehow corrupted (it added a lot of trash code)

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Stephen B. Kiely-Jones
  • Stephen B. Kiely-Jones's Avatar Topic Author
  • Offline
  • Senior Member
More
11 years 1 month ago #137711 by Stephen B. Kiely-Jones
Replied by Stephen B. Kiely-Jones on topic ''Read More..'' link to module?
Hi Krikor

zip file attached

Stephen :-

)
Attachments:

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
11 years 1 month ago #137712 by Krikor Boghossian
Replied by Krikor Boghossian on topic ''Read More..'' link to module?
That is the .rtf file again, sorry about the hassle but I need the actual php file with the changes. (The extension should be .php not .rtf)

I can edit the rtf file but if I miss some trash code it can break your site.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum