mcgyver47
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Posts Widget] No text under title !Sorry for the noise , problem solved.
I deleted problem post and erwrote the same post.
Everything is working fine.Forum: Plugins
In reply to: [Download Manager] Title for Download fileSorry for late answer but have been away from my desk for a few days.
My client doesn’t want to test new version in case it doesn’t work as expected and old version is rock solid ! My development version has no internet access as I develop using MAMP on my iMac.
May be you could explain in details what I have done wrong ( even I followed instructions provided on your site : uploading new version as well as Copy to Pro and then “Settings” and Migrate)
Thanks for help and apologies for late reply.Forum: Plugins
In reply to: [Download Manager] Title for Download fileI have tried updating to 2.7.0 (on test site of course) but downloads list remains empty even I have followed closely instructions using Copy to pro after updating !
Hope you can solve the problem because on this site I have about 120 files available for download.Forum: Plugins
In reply to: [upPrev] Continue ReadingOk, Thanks for answer
RegardsForum: Plugins
In reply to: [upPrev] Continue ReadingOk, Thanks for answer
RegardsForum: Plugins
In reply to: [Firelight Lightbox] PDF ProblemThank you for your prompt answer but finally I went another way and I have no link to share on this particular case.
Forum: Plugins
In reply to: [Download Manager] Not able to create a new downloadI am in the same situation:
– WP: 3.8
– Download Manager: 2.5.91
And this permission problem is new since updating to both latest versions.
Everything worked fine with WP 3.7.1 and DM 2.5.9
All I can say if you deactivate the plugin and reactivate it right away the problem goes away and you can access everything again but it doesn’t last more than once or twice.
I really hope that developer is reading this post and will fix the problem quickly.
Another problem has appeared short does’t work quite as before .
Thanks in advance for any help !
JeanForum: Plugins
In reply to: [Download Manager] Not able to create a new downloadUnfortunatly it keeps coming back all the time, I have to deactivate and reactivate on a regular basis to have access to settings or download file list !
I am the administrator of the site, so I have all the correct rightsForum: Plugins
In reply to: [Download Manager] Not able to create a new downloadsince upgrading to 2.5.91 with 3.8, I am getting this same problem ( never happened before):
“you do not have sufficient permissions to access this page”
Worked perfectly before upgrading.
Checked code in download-manager.php : looks correct as indicated by cesareino.
Anybody any ideas ?
Deactivating and reactivating the plugin seems to have solved the problem for nowI am having the exact same problem with version 1.64 :displays post excerpt followed by “> after post is rated.
checked your solution but could not find extra “> in wp-postratings.php.
Any ideas ???
Thanks for helpForum: Plugins
In reply to: [WP-PostRatings] Post excerpt appearing !I reverted to version 1.40 found in old dev version of my site and it seems to be working without above mentioned problem !
Weird !Forum: Fixing WordPress
In reply to: Sorting result of clicking on tag coud linkActually I hadn’t realized you could retrieve the tag with :
$tag = get_query_var(‘tag’);
After that the problem is solved
Thanks againForum: Fixing WordPress
In reply to: Sorting result of clicking on tag coud linkThank you
Exactly what I was looking for
Regards from FranceForum: Fixing WordPress
In reply to: Sorting result of clicking on tag coud linkThanks for answer but how do I find out which tag ( from tag cloud) was clicked do to a new query and then sort them as instructed ?
Forum: Plugins
In reply to: [Plugin: WordPress Popular Posts] Adding “Read more” link after excerpt ?Answer is modifiying line 194 as follow
$permalink = get_permalink($wppost->ID);
$post_link ='<a href="' . $permalink . '" title="">' . "Lire la suite..." . '</a>';
$post_content = "<span class=\"wpp-excerpt\">" . $this->get_summary($wppost->ID, $summoner) . "<span class=\"wpp-link\">" . $post_link . "</span>". "</span>";
Hope this helps