srfrmac87
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Says "No upcoming Events at this time"?, but there are-I am having the same issue if you are describing using the built-in widget. I am on a child version of the Twenty Ten Theme. I tried using a default theme and the upcoming events started showing up.
I need to update some of the core files, using diffs, as some update between the revisions of the theme (the time when I copied and generated the child theme to the newest revision of the theme) is necessary for The Events Calendar to work.
I hope this helps. When I come up with more information, I will try to let you know.
Forum: Plugins
In reply to: [The Events Calendar] Possible Code Typonot sure if this is intentional but if you are trying to use the actual code you need to use backticks (the key above tab and next to the number 1)
the <a href> code goes here
see the lines after the text boxForum: Plugins
In reply to: [The Events Calendar] Event view page on venue portion website name issue.If you are comfortable doing so (found this not my own work), as a temporary solution until it is patched:
Forum: Plugins
In reply to: [The Events Calendar] Events Links Not WorkingIf you are comfortable doing so (found this not my own work):
Forum: Plugins
In reply to: [WP-Slimbox2 Plugin] 1.Admin Panel/Page Problem and 2. other problemsI just wanted to update, I was able to figure out what I needed to do, and got the admin panel working. After I got it sorted, I decided to change the website away from using iframes.
Forum: Plugins
In reply to: [Slideshow] A way to remove links from the title/captionI am hoping I am understanding the question correctly. This will completely remove the link from the title/caption/description/whatever so that it is all just plain text. The image will still have the link attached. Please note that changing this will remove the link from the title/caption/description on all slideshows.
Navigate to \wp-content\plugins\slideshow-jquery-image-gallery\views\SlideshowPluginSlideshowSlide\
Edit frontend_attachment.php
For me it is on line 105 and 106 but search for the lines containing this code:
<?php echo !empty($title) ? '<h2><a ' . $anchorTagAttributes . '>' . $title . '</a></h2>' : ''; ?> <?php echo !empty($description) ? '<p><a ' . $anchorTagAttributes . '>' . $description . '</a></p>' : ''; ?>
Replace that with this code:
<?php echo !empty($title) ? '<h2>' . $title . '</h2>' : ''; ?> <?php echo !empty($description) ? '<p>' . $description . '</p>' : ''; ?>
The following code was removed:
<a ' . $anchorTagAttributes . '>
and
</a>
This will keep all formatting the same and only remove the link. Hope that answers the question!
Forum: Plugins
In reply to: [Slideshow] Insert Description as text instead of linkNavigate to \wp-content\plugins\slideshow-jquery-image-gallery\views\SlideshowPluginSlideshowSlide\
Edit frontend_attachment.php
For me it is on line 105 and 106 but search for the lines containing this code:
<?php echo !empty($title) ? '<h2><a ' . $anchorTagAttributes . '>' . $title . '</a></h2>' : ''; ?> <?php echo !empty($description) ? '<p><a ' . $anchorTagAttributes . '>' . $description . '</a></p>' : ''; ?>
Replace that with this code:
<?php echo !empty($title) ? '<h2>' . $title . '</h2>' : ''; ?> <?php echo !empty($description) ? '<p>' . $description . '</p>' : ''; ?>
The following code was removed:
<a ' . $anchorTagAttributes . '>
and
</a>
This will keep all formatting the same and only remove the link. Hope that answers the question!