Forum Replies Created

Viewing 15 posts - 8,386 through 8,400 (of 8,657 total)
  • Author
    Posts
  • in reply to: lead capture pop up box #4176
    wensolutions
    Keymaster

    Hello @Chariti

    Since your given site URL is under construction I couldn’t debug your site.
    So I don’t have exact solution. However if your have installed any plugins then try deactivating them one by one and check. If your plugin have generated issue then you will know the plugin.
    Try inspecting your site and check the console if any js error exists.
    And if your site was not under construction it would be much better.

    Let us know how it goes.

    Regards!!

    in reply to: Footer copyright change #4170
    wensolutions
    Keymaster

    Yes, you can purchase it through Paypal.

    Have a nice day !!

    in reply to: Thumbnail Size #4131
    wensolutions
    Keymaster

    Hello @benoa

    For your information for the masonry layout the theme doesn’t use the thumbnail generated by WordPress.
    But you can choose image size to be displayed when viewing particular posts. Masonry Layout automatically fits the images on the screen according to the size of the image you upload. It doesn’t use the thumbnail generated by WordPress.

    Let us know if you have further query regarding this.

    Regards!!!

    in reply to: Thumbnail Size #4128
    wensolutions
    Keymaster

    Hello @benoa, there is no such recommendation in thumbnail size of the image for masonry layout. It depends upon the image orientation either squared, landscape or portrait size image you upload will auto adjust in a masonry grid layout. Referencing your current site it appears like images used are approximately square however they are still showing up in a masonry layout less significantly.

    In sum up, it depends upon the images that you have uploaded. You can try uploading the portrait and landscape size images and try to see the changes.

    Hope this helps resolving your query. Let us know if you have any further query on this.

    in reply to: lead capture pop up box #4127
    wensolutions
    Keymaster

    Hi @Chariti, can you please post in your site URL so that we can inspect your site source code for any issues? Thanks

    in reply to: Footer copyright change #4095
    wensolutions
    Keymaster

    @femke98, the option for changing the footer info like Copyright is only available in Pro version.

    See How to manage Footer Options?

    http://themepalace.com/theme-instructions/wen-associate-pro/#HowtomanageFooterOptions?

    You can get more awesome features in Pro version as listed here:

    http://themepalace.com/downloads/wen-associate-pro/

    and as documented here :

    http://themepalace.com/theme-instructions/wen-associate-pro/

    Please feel free to post if you have any query or any sort of issues.

    Thanks

    in reply to: Navigation Menu #4081
    wensolutions
    Keymaster

    Hello @Anthony,

    We have managed to replicate the scenario similar to your issue.
    As you have said It began after you guys gave me a fix for the child element opening to the left of the parent menu items instead of the right.
    In this thread you were given below custom CSS to add:

    
    .main-navigation ul ul li:hover  ul {
        left: 200px;
        width: 200px;
    }
    

    Now you need to remove these Custom CSS.
    After removing you need to add below CSS in child theme style.css file:

    
    .main-navigation ul ul li:hover > ul{
      left: auto;
      right: -200px;
      width: 200px;
    }
    

    Hope this will help to resolve your issue.
    Let us know how it goes.

    Best Regards!!

    in reply to: Image sizes #4080
    wensolutions
    Keymaster

    Also, if you are using Bizlight Pro theme, kindly post in your queries on its own support forum going from this link : http://themepalace.com/forum/bizlight-pro/

    in reply to: Image sizes #4079
    wensolutions
    Keymaster

    Hello @Anthony,
    Hope you are doing good today 🙂
    It seems like there is confusion between Biography Pro and Bizlight Pro themes. Let me clarify it.

    For Biography Pro theme the recommended full image size should be greater than 365*247 px. The exact same image will appear both in the fullscreen banner and in the header banner for pages.

    However, in Bizlight Pro theme different images are displayed on fullscreen banner and in the header banner for pages. The recommended image size is 1360*530px for the fullscreen banner and 1360*190px for header banner for pages.

    Hope this helps resolve your queries.
    Regards

    in reply to: Navigation Menu #4078
    wensolutions
    Keymaster

    Hello @Anthony,
    Yes, you can put it back and let us trace the issue.

    Thanks,

    in reply to: Navigation Menu #4008
    wensolutions
    Keymaster

    Hello @Anthony,
    We inspected your site and found that there were no third-level child on the menu. Anyways, we tried to replicate that issue on our end but it is working fine for us. That is, no issue on the third level as well.
    Let us know if you are still facing that sort of issue.

    Thanks,

    in reply to: Exclude featured posts from the blog #3973
    wensolutions
    Keymaster

    Yes, the coding approach however would be quite manual in that sense and not always feasible until you go ahead and make it to control them through metabox or custom fields.

    Nevertheless, you figured it out by installing a plugin which could be easy and handy based on your requirement which is a good thing ! 🙂

    Thanks

    in reply to: Exclude featured posts from the blog #3966
    wensolutions
    Keymaster

    Hi @scorbelli,

    use the pre_get_postsfilter:

    function excludePostId($query) {
      $postIds = array(
        24, 10
      );
    
      if (is_category() && is_main_query()) {
        set_query_var('post__not_in', $postIds);
      }
    }
    add_action('pre_get_posts', 'excludePostId');

    is_category()will accept a category slug or ID. You can limit which categories the post will be excluded from.

    in reply to: Navigation Menu #3954
    wensolutions
    Keymaster

    Hi,

    For color change on hover paste the following CSS code

    #primary-menu li a:hover {
        background-color: #FF0000 !important;
    }

    For active menu color paste the following CSS code

    #primary-menu li.current_page_item > a{
    
    background-color: #FF0000 !important;
    }

    Hope this helps!

    in reply to: Slide problem on Dolphin Browser #3898
    wensolutions
    Keymaster

    Hello,
    Have you installed any plugins or included any js codes on your theme recently? If yes, then remove them and see if your site works. That might be a js issue as mentioned above. So, you can try debugging.

    Hope you will do good. Also, kindly ping us for any sort of assistance.

    Thanks,

Viewing 15 posts - 8,386 through 8,400 (of 8,657 total)