Pin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images with certain resolution not showing in Media LibraryStupid Adblock… -_-
Forum: Plugins
In reply to: [Cache Enabler] Pre generate cache prior to visitor visiting site firstThe option to set a bot to crawl the website after the cache is completely emptied should be a must have. If the crawl can be set to scan only one post every 5 or 10 seconds it won’t impact the website performance at all even on a shared server.
If you have a first-time visitor just after you have emptied the whole cache, he will think that your site is just bad. He will leave with the impression that your site loads slow and won’t access it again next time.
In my opinion, this option should be taken into consideration for the main reason stated above. And I doubt it can’t be created in a way to not affect the performance.
Regards,
Thanks a lot Michael! Worked like a charm.
If anyone interested, final code:$feat_img = get_post_meta($post->ID, 'featured_img', true); $next_post = get_adjacent_post( true, '', false ); $prev_post = get_adjacent_post( true, '', true ); if ( is_a( $next_post, 'WP_Post' ) ) { next_post_link('%link', ' <img src=" ' . $feat_img . ' " > ', true); } else { if ( is_a( $prev_post, 'WP_Post' ) ) { echo "<img src=\" " . $feat_img . " \" > "; } }
Forum: Plugins
In reply to: [Skip to Timestamp] Some warning messagesThanks for the update. I took a look at wp-config and debug mode wasn’t enabled. I have my site under serverpilot.io’s config, so it might be that.
Thanks again,
CheersForum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Timestamps for showing notesThanks for the plugin suggestion @amandato.
Would be super awesome if you could add that functionality into Powerpress. A suggestion could be to offer the option with a switch, activate or disable, so it won’t load the .js files if the function is not used.
Forum: Plugins
In reply to: [W3 Total Cache] Settings to show EU cookie consent warning?I recommend https://silktide.com/tools/cookie-consent/download/. You simply add the script just before the </head> tag. If your theme support custom header code that will do it or, manually add the code to your header child / theme.
Don’t know if W3 will cache external files too, but you can add the css and js to your host via FTP and then add those files to exception.
Wrote this because I don’t like using a plugin for every single small task.
You can also add the files from that plugin to exception.
Under Minify setting page you will find:
– Never minify the following JS files:
– Never minify the following CSS files:And add the path for those files on the fields. For example:
https://www.EXAMPLE.COM/wp-content/plugins/YOUR_PLUGIN_DIRECTORY_NAME/css/FILE_NAME.CSShttps://www.EXAMPLE.COM/wp-content/plugins/YOUR_PLUGIN_DIRECTORY_NAME/js/FILE_NAME.js
Hope it helps.
CheersForum: Plugins
In reply to: [Ad Blocking Detector] Text from 'Ad-blocker detected' not showing up?I had the same problem today when I tried to figure it out why it doesn’t show up. I suspected a plug-in interaction but then I thought the problem might be caused from w3 total cashe or Google Page Speed.
And yes, both adblock-detector.min.js and advertisement.min.js were added to the js minified file along with all the other js. I excluded those two from minification and the plugin works like a charm.
Hope this will help diagnosing related problems in the future.
Thanks for the great work John Morris!
Forum: Plugins
In reply to: [Ad Blocking Detector] WordPress error! tinyMCE is not defined.Never mind, I had in functions.php this code:
add_filter( 'user_can_richedit' , '__return_false', 50 );
Works now.
Forum: Plugins
In reply to: [BuddyPress Activity Privacy] Language not loadingpff… the fix is to press Save Setting one more time.
Why you use [embed] shortcode? You don’t need it. Simply copy-paste the Youtube URL and hit publish. The video will magically appear.
Forum: Plugins
In reply to: [Lazy Load for Videos] Videos opening in a new windowThat did the trick. Danke ??
(I just noticed that I posted 2 posts. I think it was from the internet connection)
~All the best
Forum: Plugins
In reply to: [Lazy Load for Videos] Doesn't work with the latest version of Buddypress 2.0Nevermind. I added the features from the latest version to 1.3.1 version and everything is working smooth. No idea tho why I can’t get my site running with the latest version. Must be some js conflict…
Forum: Plugins
In reply to: [Register Plus Redux] Buddypress Support?Compatibility support for Buddypress would be insanely awesome!
Forum: Plugins
In reply to: [BuddyPress Docs] Take over when editing – possible bugThat is what I was referring to, that message doesn’t appear and 2 or more users can edit from the front end one doc freely without any warning. Tested with Twenty Thirteen and BuddyPress Default… no “This Doc is currently being edited by…” message.
Also, I just updated WP to 3.7 and now I get 404 when trying to read a doc. Updated the Permalinks, switched to default themes… nothing seems to work. I can edit a doc but when I press Save or try to read a doc I get 404…
So now, two bugs ??
Forum: Plugins
In reply to: [Lazy Load for Videos] Plugin brakes on long Youtube URLsKevin, you’re awesome! Fixed, indeed.
Cheers!