Weglot menu

hi i dont know how to add text link from my weglot translation plugin in the menu and i want them to appear at the far right of the pro theme menu

thank you

Also how can i put a captcha on my form7 mail form

Also is it possible to modify or redesign the blog list page… i would like to ad a header image to the blog post list

Hi Sebastien,

  1. To add your text link, you can simply add another text element to your Container 3in your PRO Header.
    For example

  1. To add a captcha to your contact form 7, you can try this third party plugin
  1. To add header image to your blog, you can add the code below in your child theme’s functions.php file
function add_header_image() {
  if(is_home()) { ?>
      <div class="blog-header-image">
          <img src="http://yoursite.com/wp-content/uploads/2018/07/colored-pencils-374771_1280-1200x800.jpg">
      </div>
<?php      
  }
}

add_action( 'x_before_view_global__slider-below', 'add_header_image', 10 );

Make sure to change the src with the url of the image that you want to add.

Please check the link below for your guide on how to set up a child theme

Thanks

If you go see my website www.sebastienmarchi.com i managed to put the language links but i want them to be in the far right how to do that and still maintain the responsivenes of the website

Also there is a bug in the front page. It does not scroll normally and the header disapears Can you check please

Hello Sebastien,

  • Well in that case, please add another container and insert the text element in this new container. This new container should be then align to the right of the header.

After saving all your changes, since you have installed a caching plugin WP Fastest Cache, please clear your plugin cache before testing your site. This can cause the changes to not take place on the front end. It will eventually show up when the cache regenerates, but it’s not ideal if you’re looking to see your changes immediately. Caching plugins are best to turn on only when you’ve finished building the site.

Hope this helps. Kindly let us know.

Also there is a bug in the front page. It does not scroll normally and the header disapears Can you check please

Hi Sebastien,

It’s due to two visible scrollbars, I’m not sure what exactly caused the two scrollbars. We have the same styling (integrity) and I’m not getting that second scrollbar. To fix it, please add this CSS to your Theme Options > CSS

html {
    overflow-x: initial;
}

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.