vali petcu
Forum Replies Created
-
for example here. https://www.zoso.ro/reclame-mirifice-5/
there are also links in this area, which the lightbox takes into consideration https://i.imgur.com/fpKMzeG.png
;[ Please do not bump. ]
zoso.ro.
i removed some .js from source code and got it done.
now i need to figure how to use ur plugin just for post images, not for sitewide images.Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessand it deleted all the custom rules from .htaccess! good job!
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessThe result of clearing cache from time to time.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessI did vote 🙂
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessdone. let’s hope it will not rewrite them again.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessyes, of course.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] keeps trying to rewrite .htaccessnot really. it deleted the following part after i published a post.
# BEGIN WpFastestCache <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / AddDefaultCharset UTF-8 RewriteCond %{HTTP_HOST} !^www\. RewriteCond %{REQUEST_URI} !^/wp-login.php RewriteCond %{REQUEST_URI} !^/wp-admin RewriteCond %{REQUEST_URI} !^/wp-content RewriteRuleand the result was this https://pbs.twimg.com/media/BnHyfRACIAEhEpW.png:large
Forum: Fixing WordPress
In reply to: Different post slug?//dacă vreţi să nu vă modifice automat slugul, comentaţi funcţia de mai jos
if ($slug) return $slug;look for the rebuild_sitemap function in admin/class-metabox.php and delete the whole lines:
// When permalink structure is changed, sitemap should be regenerated
add_action(‘permalink_structure_changed’, array(&$this,’rebuild_sitemap’) );
add_action(‘publish_post’, array(&$this,’rebuild_sitemap’) );come on, don’t be lazy, you got the explanation at he bottom of the “titles” tab
try my fix, it will do until yoast comes with an official fix.
i’ve found a workaround: delete this function in admin/class-metabox.php
function rebuild_sitemap( $post ) { global $wpseo_generate, $wpseo_echo; $wpseo_generate = true; $wpseo_echo = false; require_once WPSEO_PATH.'/sitemaps/xml-sitemap-class.php'; }and start using another sitemap plugin.
the only idea i have is that the plugin writes in the custom fields every time it publishes a post. having 13.000 articles takes about 3-4 minutes to do that. hope yoast fixes it soon.