chillmen
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Grid] Display teaser images before title?@livelovepasta you add this code to functions.php, it’s working for me!
Thanks @nutsandboltsmedia and @bill EricksonI use jetpack on every wordpress website. i don’t use all the plugin that jetpack offers, but if they add a social login plugin for google+ and facebook too, it will be great.
Forum: Plugins
In reply to: [Google XML Sitemap for Images] In case of using a CDN?Hi check this solution by yoast:
Switch XML Sitemap image URLs to CDN
https://yoast.com/wordpress/seo/api/But you need to use the wordpress seo plugin sitemap.
@astrasuite Thank you, i had a parsing error and your quick fix is working.
Forum: Plugins
In reply to: [W3 Total Cache] Will not connect to MaxCDNNot only the test button but also the purge CDN function is not working if using custom hostname.
Forum: Plugins
In reply to: [W3 Total Cache] So should I update or not?I was afraid to update, but i did it few hours ago everything working perfect.
Some difficulties to understand the new cdn keys, alias etc… but now it’s ok.Forum: Plugins
In reply to: [Yoast SEO] Switch XML Sitemap image URLs to CDN (nextgen images)You should add this code to functions.php file (inside your theme folder)
Here is the link to yoast website, get more infos about this code:
https://yoast.com/wordpress-seo-api-docs/Forum: Plugins
In reply to: [Download Manager] Breaks up themeI have the same problem it’s breaking my genesis theme, and slows down my blog.
And if try to remove the plugin, i can’t access my plugins dashboard.Forum: Fixing WordPress
In reply to: Images not indexed by google since w3-cache/cdnThis will help:
seo api docs
Look at the bottom of the page for:
Switch XML Sitemap image URLs to CDNForum: Plugins
In reply to: [Maintenance Mode] Maintenance Mode Shut Me Out!Too late response but maybe will help someone else.
If you have a problem when installing a plugin, just access your installation file using an ftp program like: Filezilla (free)
And delete the plugin folder in : /public_html/wp-content/plugins/
that’s all@rangelrmorais
try to edit every category and choose (look down) “always index” and “always include” (something like this my blog is in french)
If it’s not working maybe because you have no content in this categories, try to add some content and see if it works.Thanks bashen i’ll give it a try.
Fix it,
Find this lines: or just change the number 2 to 0
$post_ratings_percentage = round((($post_ratings_score/$post_ratings_users)/$ratings_max) * 100, 2);
Change it to:
$post_ratings_percentage = round((($post_ratings_score/$post_ratings_users)/$ratings_max) * 100, 0);
Forum: Plugins
In reply to: Adding Social Media Icons to POST TITLEI think this plugin can do it : Category Icons Lite
Forum: Plugins
In reply to: [Simple Image Sizes] [Plugin: Simple Image Sizes] Crop from topWell i found a better (hack) solution for cropping images from top:
open the file media.php (this file is inside wp-includes)
Find this lines:$s_x = floor( ($orig_w - $crop_w) / 2 ); $s_y = floor( ($orig_h - $crop_h) / 2 );
and replace with this:
$s_x = floor( ($orig_w - $crop_w) / 2 ); $s_y = 0; //floor( ($orig_h - $crop_h) / 2 );
And start the regeneration process.
I found this solution here : link