djenciduquene
Forum Replies Created
-
I’m not one hundred percent sure if I understand what you mean.
But you want the drop down menu to have the same hover (grey) color like the main menu? The reason why it stays white is because the links in that drop down menu are not considered hover. Your mouse doesn’t hover them…If you want them all to be grey you simply use this CSS…
.navigation-top li li a {
color: #767676;
}Forum: Plugins
In reply to: [SEO Friendly Social Share Buttons] Show errorIm also working on implementing a counter without javascript to see the amount of shares. And the option to chose different social icons. Those updates should follow soon.
Forum: Plugins
In reply to: [SEO Friendly Social Share Buttons] Show errorHi,
Sorry for this late response. I was on a trip.
I fixed 2 bugs in the plugin. Now it should work properly ??
Forum: Developing with WordPress
In reply to: Mystical wpdb query problem. What I’m doing wrong?And when you’re logged in, but INIT is not called, it will give you a NULL.
Try…
add_action(‘init’, ‘myFunction’);
function myFunction(){
$user_ID= get_current_user_id();
}
And then do an if and else statement. If user_id != NULL than ….
Else you echo out that he still can not get the user_id….Forum: Developing with WordPress
In reply to: Mystical wpdb query problem. What I’m doing wrong?You must be logged in, in order this to work. Are you logged in?
Forum: Fixing WordPress
In reply to: Plugin errors after updating wordpressAbout which plugins you’re talking about? Could be that they don’t support the new WordPress version?
It could be a problem involving your theme also. Try to use a standard wordpress theme for a sec, and see if the errors continue.
The first error problem indicates that siteaddress/admin/options-sanitize.php
on line 79, is not an array. In my opinion your theme or one of your plugins is not able to support new WordPress update.Second error you could try to bypass by adding … “define( ‘WP_MEMORY_LIMIT’, ‘256M’ );” in your WP-Config.
Login to your Cpanel or DirectAdmin and try to change to PHP7.
“PHP Warning: array_key_exists() expects parameter 2 to be
array, null given in siteaddress/admin/options-sanitize.php
on line 79, referer: siteaddress/wp-admin/index.php”Could you paste line 79 here in the forum one time?
Forum: Fixing WordPress
In reply to: wp-admin won't load – white screenCheck for any white space in your functions.php or another php file you modified. White space BEFORE the php tags, and AFTER php tags.
Any white space can cause a blank screen in your admin
Forum: Fixing WordPress
In reply to: Sadly, No One Can Comment On My Blog …Hi,
It seems the comment form is trying to make a https connection with jetpack and that is what causing the error because your website is on http
It could be caused by a plugin that is interfering with jetpack
For jetpack the plugin they advice for security is akismet
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?https://gtmetrix.com/reports/playsterr.com/Ycr395ad
This is your report on gtmetrix
Using Gzip will save you 50% of loading time
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?gtmetrix.com is the most complete but uses canada
pingdom tools is using Amsterdam and Stockholm but is not giving much information on what you could change
Forum: Themes and Templates
In reply to: WP theme and Woocommerce single prod issueYou will have to change the CSS of woocommerce.css
This you can not do in woocommerce.css itself because you could ruin it, or an update will overwrite it.
You need to use a child theme or a custom css editor
When you are using Jetpack to serve images it will be impossible to remove the string. As it is used by Jetpack’s CDN
function rtp_rssv_scripts() { global $wp_scripts; if (!is_a($wp_scripts, 'WP_Scripts')) return; foreach ($wp_scripts->registered as $handle => $script) $wp_scripts->registered[$handle]->ver = null; } function rtp_rssv_styles() { global $wp_styles; if (!is_a($wp_styles, 'WP_Styles')) return; foreach ($wp_styles->registered as $handle => $style) $wp_styles->registered[$handle]->ver = null; } add_action('wp_print_scripts', 'rtp_rssv_scripts', 999); add_action('wp_print_footer_scripts', 'rtp_rssv_scripts', 999); add_action('admin_print_styles', 'rtp_rssv_styles', 999); add_action('wp_print_styles', 'rtp_rssv_styles', 999);
Javascript And CSS together
function rtp_rssv_styles() { global $wp_styles; if (!is_a($wp_styles, 'WP_Styles')) return; foreach ($wp_styles->registered as $handle => $style) $wp_styles->registered[$handle]->ver = null; } add_action('admin_print_styles', 'rtp_rssv_styles', 999); add_action('wp_print_styles', 'rtp_rssv_styles', 999);
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:
Sorry I was not looking carefully.
They are cached but have a short caching time (you can set images to a much longer time) In this htaccess example it’s 1 year.
Because usually an image will not be edited