itmonitor
Forum Replies Created
-
Issue solved.
@ sterndata thank you. This user number issue was solved somehow after the last WordPress updates to v. 4.8
Forum: Plugins
In reply to: [Contact Form 7] autocomplete off?Thank you sevenspark.
Please, could you elaborate a how to use the tag? I found out this solution, but it will involve coding http://www.ragewebdesign.co.uk/contact-form-7-disable-autofill/
Forum: Plugins
In reply to: [iframe] Iframe: 4 shortcodes in the same pageBasically, I need a wordpress page with a table and into each cell a website, using your iframe plugin. How much would you charge for this job? Is there any way I can PM you?
Forum: Plugins
In reply to: [Contact Form 7] autocomplete off?Hi, how to turn autocomplete off in Contact Form 7? My version is the last one, published around two months ago. Any advice is welcome.
Hello,
I am deploying CDN in a website. I tested three cache plugins: W3, Super Cache and WordPress Fastest Cache. In my tests, WordPress Fastest Cache provided the easiest install and best cache performance, integrating very well with the CDN.
However, WordPress Fastest Cache will block me out of the WordPress dashboard, because it will disable the login hover in the top of the website. I need to hover the mouse ouver the login in order to the login form (userid + password fields) to drop down and I can type the login.
I had to uninstall WordPress Fastest Cache through SSH.
I do not want to use W3 (too heavy, slow) and Super Cache (it breaks the website). I wonder if you can help me resolve this login issue caused by WordPress Fastest Cache.
The website is aksert.com (your plugin is not installed at the moment)
Please, let me know.
Rgs
IM
Forum: Plugins
In reply to: [Footer Text] HelpHi Shea!
sorry for dealy and many thanks! 🙂 I changed the code as above, but this makes the whole footer disappear. No footer text is displayed down the main slider.
Forum: Plugins
In reply to: [iframe] Iframe: 4 shortcodes in the same pageYes, please, check here https://aksert.com/user/
On seeing it today, it seems the page header is broken, not sure if this is because of the iframes in this page.
screenshot here https://www.diigo.com/item/image/5pj5q/kcjo
- This reply was modified 9 years, 2 months ago by itmonitor.
Forum: Plugins
In reply to: [Footer Text] HelpMany thanks! 🙂
There are two files related to the footer, I am pasting them below so you can have a full overview. I am not sure which one will serve to place the text full width at the bottom. Sorry if they are a bit extense:
This is the theme footer file
<?php GLOBAL $webnus_options; /***************************************/ /* Close head line if woocommerce available /***************************************/ if( isset($post) ){ if( 'product' == get_post_type( $post->ID )) { echo '</section>'; } } ?> <?php $footer_show = 'true'; if(isset($post)) { GLOBAL $webnus_page_options_meta; $footer_show_meta = isset($webnus_page_options_meta)?$webnus_page_options_meta->the_meta():null; $footer_show =(isset($footer_show_meta) && is_array($footer_show_meta) && isset($footer_show_meta['webnus_page_options'][0]['webnus_footer_show']))?$footer_show_meta['webnus_page_options'][0]['webnus_footer_show']:null; } if ($footer_show != 'false') : ?> <footer id="footer" <?php if( 2 == $webnus_options->webnus_footer_color() ) echo 'class="litex"';?>> <section class="container footer-in"> <?php /***************************************/ /* Loading footer type 1,2,3,4,5 /* Each footer has it's own behaviour /***************************************/ $footer_type = $webnus_options->webnus_footer_type(); get_template_part('parts/footer',$footer_type); ?> </section> <!-- end-footer-in --> <?php if( $webnus_options->webnus_footer_bottom_enable() ) get_template_part('parts/footer','bottom'); ?> <!-- end-footbot --> </footer> <!-- end-footer --> <?php endif; ?> <span id="scroll-top"><a class="scrollup"><i class="fa-chevron-up"></i></a></span></div> <!-- end-wrap --> <!-- End Document ================================================== --> <?php // sticky menu GLOBAL $webnus_options; $is_sticky = $webnus_options->webnus_header_sticky(); $scrolls_value = $webnus_options->webnus_header_sticky_scrolls(); $scrolls_value = !empty($scrolls_value) ? $scrolls_value : 150; if( $is_sticky == '1' ) : echo ' <script type="text/javascript"> jQuery(document).ready(function(){ jQuery(function() { var header = jQuery("#header.horizontal-w"); var navHomeY = header.offset().top; var isFixed = false; var $w = jQuery(window); $w.scroll(function(e) { var scrollTop = $w.scrollTop(); var shouldBeFixed = scrollTop > ' . $scrolls_value . '; if (shouldBeFixed && !isFixed) { header.addClass("sticky"); isFixed = true; } else if (!shouldBeFixed && isFixed) { header.removeClass("sticky"); isFixed = false; } e.preventDefault(); }); }); }); </script> '; endif; echo $webnus_options->webnus_space_before_body(); wp_footer(); ?> </body> </html>and this is the footer bottom file
<?php GLOBAL $webnus_options; ?><section class="footbot"> <div class="container"> <div class="col-md-6"> <!-- footer-navigation /end --> <?php if( 1 == $webnus_options->webnus_footer_bottom_left() ): ?> <div class="footer-navi"> <img src="<?php echo $webnus_options->webnus_footer_logo(); ?>" width="65" alt=""> </div> <?php elseif(2 == $webnus_options->webnus_footer_bottom_left()): ?> <div class="footer-navi"> <?php if(has_nav_menu('footer-menu')){ $menuParameters = array( 'theme_location'=>'footer-menu', 'container' => false, 'echo' => false, 'items_wrap' => '%3$s', 'after' => ' | ', 'depth' => 0, ); echo strip_tags(wp_nav_menu( $menuParameters ), '<a>' ); } echo '</div>'; elseif(3 == $webnus_options->webnus_footer_bottom_left()): ?> <div class="footer-navi"> <?php echo do_shortcode($webnus_options->webnus_footer_copyright()); echo '</div>'; endif; ?> </div> <div class="col-md-6"> <!-- footer-navigation /end --> <?php if( 1 == $webnus_options->webnus_footer_bottom_right() ): ?> <img src="<?php echo $webnus_options->webnus_footer_logo(); ?>" width="65" alt=""> <?php elseif(2 == $webnus_options->webnus_footer_bottom_right()): ?> <div class="footer-navi floatright"> <?php if(has_nav_menu('footer-menu')){ $menuParameters = array( 'theme_location'=>'footer-menu', 'container' => false, 'echo' => false, 'items_wrap' => '%3$s', 'after' => ' | ', 'depth' => 0, ); echo strip_tags(wp_nav_menu( $menuParameters ), '<a>' ); } echo '</div>'; elseif(3 == $webnus_options->webnus_footer_bottom_right()): ?> <div class="footer-navi floatright"> <?php echo do_shortcode($webnus_options->webnus_footer_copyright()); echo '</div>'; endif; ?> </div> </div> </section>Forum: Plugins
In reply to: [Team Members] Unable to align image and text body – bug?sorry for that. I am taking over this website from the developer. Let me check your plugin.
Forum: Plugins
In reply to: [Team Members] Unable to align image and text body – bug?This is not your Team Member plugin?
Forum: Plugins
In reply to: [Team Members] How to arrange Team Members sequenceThanks! I could not find the arrows in the Team Dashboard, where can I find the arrows? http://awesomescreenshot.com/00168ksmf1
Forum: Plugins
In reply to: [Team Members] Unable to align image and text body – bug?Hi!
many thanks, the page is https://aksert.com/associates/ image on the first row, first column.
Forum: Fixing WordPress
In reply to: What is wp-json?Thank you kmessinger. Life is fun, really.
Please, any advice is welcome concerning what is wp-json and if anybody knows how to remove it or reduce its load time.
Hello, anybody from S2Member can reply to this question?