zeek333
Forum Replies Created
-
Forum: Plugins
In reply to: [Cloudflare] Installation through hosting partnerssame here?
Forum: Fixing WordPress
In reply to: Enable gzip compressionok back to gzip according to gtmetrix or google pagespeed gzip not enabled on my site
it says server handles gzip and deflate.
can’t get compression nor via super cache and w3 total cache or any other .htaccess script
may be someone got some bulletproof .thaccess or any other codding for compression
never mind renamed via ftp and removed it
managed thanks
how to adjust this function to hide meta slider for other users?
function my_files_only( $wp_query ) {
if ( strpos( $_SERVER[ ‘REQUEST_URI’ ], ‘/wp-admin/upload.php’ ) !== false ) {
if ( !current_user_can( ‘level_5’ ) ) {
global $current_user;
$wp_query->set( ‘author’, $current_user->id );
}
}
}
add_filter(‘parse_query’, ‘my_files_only’ );it broke access to site completely
Forum: Plugins
In reply to: [EZ Anti-Spam Comments and Testimonials Widget] avatarye glad u like it ??
may be would be good feature to add java sliding as they change by it self.Forum: Fixing WordPress
In reply to: Enable gzip compressionresults from gtmetrix
https://gtmetrix.com/reports/totalfitnesssolutions.co.uk/zcxET8XFForum: Plugins
In reply to: looking for comment image uploadi wouldn’t ask if i hadn’t look there
Forum: Plugins
In reply to: [EZ Anti-Spam Comments and Testimonials Widget] avatarcan PM it 2 u?
Forum: Everything else WordPress
In reply to: Clear Comments Fields After Submitye i need same solution been searching for hours now
Forum: Plugins
In reply to: [Social Sharing Toolkit] bugs with googleok i don’t know if im looking in right place but there are missing some arrays in button.googleplus.php line 4
$this->share_buttons[] = array('name' => 'gl_plus', 'types' => array('none', 'horizontal', 'vertical', 'icon_small', 'icon_small_text', 'icon_medium', 'icon_medium_text', 'icon_large'));
only 5 icon arrays but should be 8
Forum: Plugins
In reply to: [Social Connect] Twitter login problem callback.php show blank pageyour fix don’t work
Forum: Plugins
In reply to: [MJ Contact us] side by sidesame issue here…
tried with simple text and tables. The form always go on top
Forum: Plugins
In reply to: [Sharebar] Hiding Vertical Bar When Using sharebar_button?My version of horizontal code:
<div class="horizontal-sharebar"> <div class="inline"><?php sharebar_button('facebook','big'); ?></div> <div class="inline"><?php sharebar_button('twitter','big'); ?></div> <div class="inline"><?php sharebar_button('stumbleupon','big'); ?></div> </div>
and CSS
div.horizontal-sharebar { float:right; width:200px; overflow: hidden; white-space: nowrap; } div.inline { display: inline-block; }