liveland
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Creating shortcode. Please wait….I was having a similar problem, I upgraded my site to use v5.6 of PHP to see if that would fix, it then displayed the creating shortcode message briefly, but it still didn’t add the shortcode.
I then noticed in the console viewer the following error was being reported:
SCRIPT5009: ‘send_to_editor’ is undefined
aalb_admin.js (271,3)I use the CKEditor plugin on my site, so I deactivated it, and now the Amazon Link Builder plugin works correctly.
Unfortunately I would like to continue using the CKEditor plugin, so if any Amazon developers are reading, it would be great if you could make it compatible.
Forum: Fixing WordPress
In reply to: How to check if a post exists by urlSorry I should have been more specific, I mean’t check if a certain post exists using php code from within a wordpress website.
I’ve found the get_page_by_title function, which allows you to test if a page exists using the title, I’m looking for something similar but that uses the URL of a post.
Forum: Themes and Templates
In reply to: [Customizr] Featured Image not showing up…Lia, I was having the same problem on my blog, but I’ve just worked out how to fix it by editing the file called content.php (within Appearance -> Editor) and changing the following code:
<?php if(is_single() || is_page())
echo ‘<hr class=”featurette-divider”>’;
?>to:
<?php if(is_single() || is_page())
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
echo ‘<hr class=”featurette-divider”>’;
?>Now my featured images are showing up on my posts, I hope this helps you to resolve your problem.
Hopefully the developers of this great theme will add this functionality as standard in the future (or maybe make it an optional setting).
Forum: Plugins
In reply to: [Ad Injection] ResponsiveI’d also like this feature, or the ability to switch certain ads off when it’s running on a mobile device.
Forum: Plugins
In reply to: [Advanced Excerpt] [Plugin: Advanced Excerpt] Excerpts not working 4.4.1I was having the same problem, to solve I had to comment out the following code from the following 4 lines of code in the function called: text_add_more
// $pos = strrpos($text, ‘</’);
// if ($pos !== false)
// Inside last HTML tag
// $text = substr_replace($text, $ellipsis, $pos, 0);
// else
// After the content
$text .= $ellipsis;I can’t see any purpose to these lines of code, and my excerpts all seem to be working correctly now.
Please could this code be fixed permanently on the next update of this superb plugin?
Thanks
Thank you for the fix, definitely worth the 5 stars I’ve just given it.
Hi,
I’ve been doing some digging into this problem, and found that the query that is being executed is returning the following rows:
115 Philips Streamium Network Music Player (NP3900) 11.3977928161621
83 Sonos Play:3 (White / Black) 3.27722787857056
107 Philips Streamium Wireless Hifi (MCI8080) 3.20878195762634
41 Sonos Multiroom HiFi Information 2.38617348670959
52 Sonos Connect:Amp (Zoneplayer 120) 2.17652750015259
47 Sonos Bridge (Zonebridge 100) 1.97940731048584
72 Sonos Connect (Zoneplayer 90) 1.48527812957764
27 Sonos Play:5 (White / Black) 0.882833003997803
89 Sonos Control (CR200 Controller) 0.55955308675766
92 Sonos Dock for iPhone / iPod 0So I can see that ‘Philips Streamium Wireless Hifi (MCI8080)’ is being found, I am therefore puzzled as to why it isn’t working.
Any ideas?
Thanks
I’d really like this feature adding, a simple ‘Exclude Posts’ which allows a comma seperated list of post id’s would be great (like the ‘Exclude Categories feature).
Forum: Plugins
In reply to: Menu / Navigation plugin for a large wordpress site – recommendations pleaseJust wondering if anyone can give any advise on this?