Cristescu Bogdan
Forum Replies Created
-
I have almost 300 subscribers with letter A, this makes the page load very slow!
I`m hosted on a private server and this thing doesn t mean that my site works slow … the database query its to long and there its a not used command of pagination results, and bOOM big page with 300 subscribers!
Other parts of alphabet load fast with 50-150 subscribers, but not this one, the first!!
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Customization – Pin it logo on wrong imagesThank you very much for that fix. Yes, the new version of the plugin solved the issue.
Go on your Permalinks settings!
https://naturalremediesinfo.biz/wp-admin/options-permalink.php
Check your settings, if all are goods, just click on Save and check the main page to see the results.
If this dont help you, maybe its about a plugin (script) from your theme!
Forum: Fixing WordPress
In reply to: Post thumbnails incorrect sizeIts not like you say! For 87px the img tag you have the image with 75px plus padding 5px plus 1px the border.
For one side you have 75+5left+5right+1left+1right=87 the new width!so, check on your theme files, or theme options if you need to change this settings with 75px and 87px.
If you have no luck with that, check this script that will help you to customize the size of the thumbnails for all your posts!
But, first, give us your pice of code that generate the output of this images! all the .php file its better!
Forum: Fixing WordPress
In reply to: Total Views per Author?Its simple to do what you whant!
Just aply this trick : https://www.wpbeginner.com/wp-tutorials/how-to-track-popular-posts-by-views-in-wordpress-without-a-plugin/
But at the end you dont call the top post views! You change the functions from the guys of wpbeginner.com with this one:
<?php $popularpost = new WP_Query( array( 'posts_per_page' => 4, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num author', 'order' => 'DESC' ) ); while ( $popularpost->have_posts() ) : $popularpost->the_post(); the_title(); endwhile; ?>
If you see, I add just this orderby author near meta_value_num because I apply the role of this function from WordPress Codex:
https://codex.www.ads-software.com/Class_Reference/WP_Query
You will display posts sorted by meta_value_num with a fallback to post author, in a descending order.
Forum: Fixing WordPress
In reply to: Importing old database to update new databaseYes! My problem is that some posts dont have all the comments and all the postmeta informations. Exactly all the posts from 2011!
How to do the write update? I see many options on the export section, but how to export in a way so that to be posible to import and update actual data and/or ignore posible errors like “missing data” (deleted posts)!
Forum: Fixing WordPress
In reply to: Deprecated function in WordPress 3.2.1Thx Andy!
Forum: Fixing WordPress
In reply to: Deprecated function in WordPress 3.2.1If you see, the script isnt a plugin file, it is something that belongs to wordpress.
Commentluv plugin didnt put the kses.php file in the wp-includes directory.
So, how can I handle this issue?
Forum: Installing WordPress
In reply to: Windows server infinite redirect after upgrading to 3.1I rename the W3 Total Cache plugin and the issue was fixed for me!
I
m able now to access dashboard and I don
t receive an infinit loop ar other error!Forum: Fixing WordPress
In reply to: Desperate: Error 500, 1and1 and NO STYLETry to change the line with
RewriteBase /
in
RewriteBase /wordpress
Or i think you can try to reconfigure the subdomain settings from your hosting cpanel..
Forum: Fixing WordPress
In reply to: No wysiwyg buttons ??? wtf?check this post!
Is not a wordpress problem!
I found this things with my old hosting company!
its about how wordpress load things from database, you have something installed, or a plugin or another script, and that load to much memory and the standard edit post files that are loaded to dont have memory to load everything!Try to check the scripts from function.php or incrase the memory for wordpress from php.ini file (that is not a wordpress file)
Forum: Fixing WordPress
In reply to: Been Hacked.. Header Java InvectionGive a link!
Forum: Fixing WordPress
In reply to: Add link for new posts?Page and post are two different things!
To insert the code from sribharath, in every post you have to edit the theme file single.php.
For the pages, you have to edit the page.php file.
But this is a stupid think, to insert this link in this mode!
Its more simple to insert a new widget in sidebar and it will appear in every kind of page (post or page or archive page or category page etc).Forum: Fixing WordPress
In reply to: Copyright? Help!https://www.allforoneinsultz.com/wp-login.php is still active, is not a host company problem.
You was hacked by someone!
I can resolve your problem if you whant!