Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • @fordhamwt I see that your website is not showing results nicely. I searched for: “actuator” in the left hand search widget and 3 results were shown to me. Would you mind telling how did you resolved it? I am also facing the same problem that you were facing.

    Thanks in advance!
    ??

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Can I see a response from plugin author any sooner?

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Hello @shelbelliott,

    Thanks for prompt reply to my query. But I guess you didn’t get my question. I am not mentioning any conflict coming with the plugin… rather I am asking you to kindly let me know the meta key value name in which your plugin saves the the start date of event being created. I need this meta key value to show the events in the order of their start date using a Visual Composer block.

    I have added some supporting screenshots with my previous reply. Kindly re-read my query and help.

    Thank you in advance!

    • This reply was modified 8 years, 3 months ago by rahuldhangar.

    I am also looking for the same. Please can somebody help me out to put the form and submit button on single line?

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Its been over 3 weeks now but didn’t heard anything from the Plugin Author… This is a serious issue coming with the plugin, please be kind and let us know what could be done in order to rectify this error.

    Thread Starter rahuldhangar

    (@rahuldhangar)

    I found that .htaccess file was not writable so I made it writable and also put the above mentioned rewrite rules in the .htaccess file so now the file looks like this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{QUERY_STRING} !lp-variation-id
    RewriteRule ^enroll/([^/]*)? /wp-content/plugins/landing-pages/modules/module.redirect-ab-testing.php?permalink_name=$1 [QSA,L]
    RewriteRule ^landing-page=([^/]*)? /wp-content/plugins/landing-pages/modules/module.redirect-ab-testing.php?permalink_name=$1 [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    RewriteCond %{QUERY_STRING} ^utm_source=
    RewriteRule ^(.*)$ /$1? [R,L]
    </IfModule>
    
    <IfModule mod_expires.c>
    
    # Enable expirations
    ExpiresActive On
    
    # Default directive
    ExpiresDefault "access plus 1 month"
    
    # My favicon
    ExpiresByType image/x-icon "access plus 1 year”
    
    # Images
    ExpiresByType image/gif "access plus 1 month"
    ExpiresByType image/png "access plus 1 month"
    ExpiresByType image/jpg "access plus 1 month"
    ExpiresByType image/jpeg "access plus 1 month"
    
    # CSS
    ExpiresByType text/css "access 1 month”
    
    # Javascript
    ExpiresByType application/javascript "access plus 1 year"
    
    </IfModule>
    
    # END WordPress

    But still the problem remains the same! Please help!

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Hi David,
    This is the .htaccess content:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    RewriteCond %{QUERY_STRING} ^utm_source=
    RewriteRule ^(.*)$ /$1? [R,L]
    </IfModule>
    
    <IfModule mod_expires.c>
    
    # Enable expirations
    ExpiresActive On
    
    # Default directive
    ExpiresDefault "access plus 1 month"
    
    # My favicon
    ExpiresByType image/x-icon "access plus 1 year”
    
    # Images
    ExpiresByType image/gif "access plus 1 month"
    ExpiresByType image/png "access plus 1 month"
    ExpiresByType image/jpg "access plus 1 month"
    ExpiresByType image/jpeg "access plus 1 month"
    
    # CSS
    ExpiresByType text/css "access 1 month”
    
    # Javascript
    ExpiresByType application/javascript "access plus 1 year"
    
    </IfModule>
    
    # END WordPress

    Is it not correct/anything needs to be updated here?

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Hi David,

    Here is the message I get when I activated the plugin ‘Health Check’ :

    Excellent: Your server is running PHP version 5.3.28 and MySQL version 5.5.37 which will be great for WordPress 3.2 onward

    I hope that the php version is fine but still the issue remains same… any idea?

    (PS: Just to clarify that the older version (v1.5.8) is my current rollbacked version of plugin which is working fine; I am having issue when I update the plugin to new version: 1.6.2)

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Hello David,

    Thanks for a fast response. Yes I have already tried this before posting the issue here in the support forum but sorry I forgot to mention. I deleted the current version and reinstalled the latest version of plugin but it doesn’t seems to work either. Any idea of what is going wrong this way?

    Thread Starter rahuldhangar

    (@rahuldhangar)

    I’m still awaiting response from the Plugin Author to get it resolved or are there any fellow developer who know about the root cause of it or observing the same issue? Your help is sought & appreciated.

    Thread Starter rahuldhangar

    (@rahuldhangar)

    @MaeveLander: Pleasure is all mine ??
    Always happy to help.
    (PS: kudos to your efforts in making such an awesome & free plugin; 5 stars from my side)

    Hi pat4040,

    I was having similar issue (I guess it was exact same issue by symptoms) and it’s got resolved now. For the time being you need to do a small code change in the logo-slider.php file until the new version of this awesome plugin gets it fixed. You can check for the solution by following this post:
    https://www.ads-software.com/support/topic/logo-slider-conflict-with-w3-total-cache?replies=3

    Regards,
    Rahul
    CreationJunkies

    Thread Starter rahuldhangar

    (@rahuldhangar)

    Dear Maeve,

    Let me lighten up your burden over this. I found the conflicting lines of code and here is the detail:

    Within the function logo_slider() in the plugin file logo-slider.php, please add this piece of code after line 571:

    else{
                $data_chunks = array_chunk($wp_logo_slider_images, $num_img);
    	}

    So the complete if-else ladder looks like:

    if( $iPod || $iPhone ){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($iPad){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($Android){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($webOS){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($mobile){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($BlackBerry){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num1);
    	}else if($RimTablet){
                $data_chunks = array_chunk($wp_logo_slider_images, $img_num4);
    	}else if(($msie) || ($firefox) || ($safari) || ($chrome) || ($IE11)){
                $data_chunks = array_chunk($wp_logo_slider_images, $num_img);
    	}else{
                $data_chunks = array_chunk($wp_logo_slider_images, $num_img);
    	}

    You skipped the final else{} statement due to which if the User Agent does not matches the one from list it don’t show the logo images while the page loads. Now how it was conflicting with W3TC specifically?
    Answer is: When any Search-Bot (or the Cron-Job which runs in background as a setting in W3TC to pre-load the pages’ cache) tries to visit any page which is not yet cached on disk, the logo-slider plugin skips showing logo images to them and eventually the cache file generated for the page during this operation has no logo-slider showing up on the page.

    I hope to see amendment in your next upcoming version of this plugin. I also have one more small thing to put into your consideration for the next version of this plugin and will be happy to discuss it with you. Feel free to contact me via contact email given on my website/blog (you can find it by visiting my profile)

    Cheers!

    Hello, I am also using Logo-slider plugin and it works well if I keep W3 Total Cache disabled (no caching on pages) but soon I enable it and check the website with minified and cached files, the images disappear from the slider! Why is that happening with W3TC? Any suggestions?

    Thread Starter rahuldhangar

    (@rahuldhangar)

    It would be kind of you to mention how you corrected the issue coming when opening the website on mobile (when I open my page on a mobile device it shows only one logo at a time despite the fact that more thn. one logo could be shown on the screen at once) your help is appreciated!

Viewing 15 replies - 1 through 15 (of 15 total)