Forum Replies Created

Viewing 15 posts - 8,416 through 8,430 (of 8,657 total)
  • Author
    Posts
  • in reply to: How to remove thumbnail pic from posts? #3645
    wensolutions
    Keymaster

    @Pinonono – If you need to remove thumbnail picture from all blog posts make the following settings:
    Go to Appearance-> Customize-> Theme Options -> Layout Options->Archive Layout ->
    Select Post Excerpt from dropdown.

    And, if you need to remove thumbnail from all single individual post/page make the following settings:
    Go to Appearance-> Customize-> Theme Options -> Layout Options->Image in Single Post/Page ->
    Select No Image from dropdown.

    When you are done with the settings click SAVE & Publish.

    Let us know how it goes.
    Regards.

    in reply to: Testimonials #3563
    wensolutions
    Keymaster

    Hello @Chariti,

    Yes, there is a way to make the testimonial snippets on the front page link to the full testimonial.

    For this you need to create and activate child theme. To create child theme refer Here.
    After successfully creating child theme follow the steps below:
    Now in Main theme’s folder / inc / hooks. You will find homepage-testimonial.php file. In this file you will see below line:

    
    function bizlight_home_testimonial() {
    

    Now copy this entire function in your child theme functions.php file.
    Now you need to to find below start and end lines and replace block of code with below code:

    
    <div class="testimonial-sayer">
        <?php 
            if('from-category' == $bizlight_home_testimonial_selection_options){
                $page = get_page_by_title( $bizlight_testimonial_array['bizlight-home-testimonial-title'],'','post' );
            }else{
                $page = get_page_by_title( $bizlight_testimonial_array['bizlight-home-testimonial-title'],'','page' );
            }
        ?>
        <a href="<?php echo esc_url(get_the_permalink($page->ID)); ?>">
            <strong><?php echo esc_html( $bizlight_testimonial_array['bizlight-home-testimonial-title'] ); ?></strong>
        </a>
    </div>
    
    

    Report if any confusion during the process.

    Best Regards!!

    in reply to: How to remove thumbnail pic from posts? #3562
    wensolutions
    Keymaster

    Hello @Pinonono,
    Hope you are doing well and thanks for asking the question.
    Can you clarify whether you want to remove the thumbnail pic when viewing listing of all blog posts or only when you are viewing a single post?

    Regards!!

    in reply to: Issues with bx-viewport size #3531
    wensolutions
    Keymaster

    @gaudialex19, current font-size of the slider with the logo space is quite greater than slider viewport.
    Temporarily it can be fixed by reducing font size of slider content on browser viewport only as follows:

    h1.main-title {
        font-size: 2em !important;
    }
    
    .banner-first{
    font-size: 1.1em;
    }
    
    .banner-second{
    font-size: 1.2em;
    }
    
    .banner-btn{
    margin-top: 0px;
    }
    
    .evision-slider-caption .banner-con{
    margin-top:0px;
    margin-bottom:0px;
    }

    But you have to consider choosing an image for slider such that it has a bit more height than current one in order to accommodate the slider captions even when shrinking the browser.

    To hide slider images in mobile viewports, put the following lines of custom CSS in your theme option.

    Appearance -> Customize -> Themes Options -> Advanced Options -> Custom CSS

    /* Portrait and Landscape */
    @media only screen 
      and (min-device-width: 320px) 
      and (max-device-width: 568px)
      and (-webkit-min-device-pixel-ratio: 2) {
    
    .evision-main-slider li img{
    	display:none;
    }
    
    }

    Hope this helps!

    in reply to: Theme not working on iphone 4S browser Safari #3530
    wensolutions
    Keymaster

    Hello @Gwendolynlove,
    Hope you are doing fine.
    The website is running well while we tested. Can you share your site url so that we can trace the issue and give you appropriate suggestion?

    Best Regards!!

    in reply to: Add a second tagline? #3498
    wensolutions
    Keymaster

    Hello @karen,
    We hope you are doing fine. Yes, You are right you need to create a child theme. After done with child theme write following code inside functions.php file:

    
    function wen_associate_site_branding(){
    
        ?>
        <div class="site-branding">
          <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
            <?php
              $site_logo = wen_associate_get_option( 'site_logo' );
             ?>
             <?php if ( ! empty( $site_logo ) ): ?>
              <img src="<?php echo esc_url( $site_logo ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" />
             <?php else: ?>
              <?php bloginfo( 'name' ); ?>
             <?php endif ?>
          </a></h1>
          <?php
            $show_tagline = wen_associate_get_option( 'show_tagline' );
           ?>
           <?php if ( 1 == $show_tagline ): ?>
            <h2 class="site-description"> Marriage & Family Therapist Registered Intern #89099, Supervised by Suzy Lee, LMFT #52675</h2><h5>Providing individual and group therapy for adults, teens, children, couples and families</h5>
           <?php endif ?>
        </div><!-- .site-branding -->
    
        <?php
          $social_in_header = wen_associate_get_option( 'social_in_header' );
          $search_in_header = wen_associate_get_option( 'search_in_header' );
        ?>
        <?php if ( ( 1 == $social_in_header && wen_associate_is_social_menu_active() ) || 1 == $search_in_header ): ?>
    
          <aside class="sidebar-header-right">
    
            <?php if ( 1 == $social_in_header && wen_associate_is_social_menu_active() ): ?>
              <?php the_widget( 'WEN_Associate_Social_Widget' ); ?>
            <?php endif ?>
    
            <?php if ( 1 == $search_in_header ): ?>
    
              <div class="search-btn-wrap"><a href="#" id="btn-search-icon"><i class="fa fa-search"></i></a></div><!-- .search-btn-wrap -->
              <div id="header-search-form">
                <?php get_search_form(); ?>
              </div><!-- #header-search-form -->
    
            <?php endif ?>
          </aside><!-- .sidebar-header-right -->
    
        <?php endif ?>
    
        <?php
    
      }

    I hope it will help resolve your issue.
    Note: You won’t be able to change the tagline through Customizer doing this changes.

    Regards.

    in reply to: Licensing product #3461
    wensolutions
    Keymaster

    @sh4mar, we realize that you are having problem on finding and implementing Theme License option in your admin panel.

    This could be the reason regarding your current hosting having some kind of restriction getting authenticate with API.

    If possible, please email us your site URL with WP admin login at support@wensolutions.com so that we could diagnose to verify your license key in your current setup.

    If you still do not wish to proceed with this approach, you can request for refund at info@themepalace.com
    with your technical reason.

    in reply to: Color footer and image dimensions #3455
    wensolutions
    Keymaster

    Glad that you resolved it by yourself. ! 🙂

    If you have any other problem, feel free to post them. Thanks.

    in reply to: Color footer and image dimensions #3450
    wensolutions
    Keymaster

    @scorbelli, thanks for using Magzimum theme. Your queries has been replied below.

    1) How can I change the color of the footer? i guess i need to add something in custom css I dont know what.

    Response : You need to add following custom CSS in theme option. Please follow Appearance->Customize->Theme Options -> Custom CSS path from your dashboard.

    footer#colophon {
        background: #FF0000; /* change this HEX color code according to your choice */
    }

    2) What are the best dimension for featured images in order to look not cropped in featured slider section and images next to them? I mean what’s the right width/height ratio?

    Response : Required size of slider image is 1600px X 440px.

    Hope this helps!!

    in reply to: Slider Home Wen Business Pro #3449
    wensolutions
    Keymaster

    @Angelo, try once by adding the following custom CSS in Appearance->Customize->Theme Options->Advance Options->Custom CSS field.

    #featured-slider article { display: none }
    
    #featured-slider article.first {
      display: block;
    }

    Hope that helps!!

    in reply to: Licensing product #3438
    wensolutions
    Keymaster

    We are sorry that you are having problem with activating your Theme.

    Can you please follow this tutorial once to check the activating steps

    http://themepalace.com/tutorials/activate-themes-license/

    Thank you.

    in reply to: New section / main page #3423
    wensolutions
    Keymaster

    Hello @roman,
    The new sections can be added on the footer area of the main(home) page. The theme supports three footer section just above the social icons area. You have to add a text widget for each column Going to Admin’s Panel Appearance -> Widgets -> Text . Then assign Text widget to Footer Column 1. Repeat this process for Footer Column 2 and 3 as well. You can take the reference on adding text to text widget as shown in the attached screenshot.
    http://prnt.sc/acym9s

    Let us know how it works.

    in reply to: Edit Footer #3408
    wensolutions
    Keymaster

    @kamina,

    Yes, premium version of this theme has this option to change the credit link and other information easily.

    Please refer this documentation for more details

    http://themepalace.com/theme-instructions/photo-perfect-pro/#FooterOptions

    Thanks

    in reply to: Employee section #3394
    wensolutions
    Keymaster

    @Miriam – The theme does not have Employees section support built in. However you can achieve this feature using plugin. You can try Team member Plugin.

    Note: We don’t have any sort of advantage from this plugin by recommending this to someone. This is just a recommendation as it is easy to use.

    Thanks,

    Regards

    in reply to: Mobile Primary Menu Issue #3379
    wensolutions
    Keymaster

    Hello @royvarney,

    Thanks for the site URL.
    We have inspected your site and on the first load of your home page on iPhone on safari the menu isn’t working. But when you visit on the other page and come back to the home page the navigation menu is working. The problem is on the first load I guess and this might be due to third party plugin.
    You can check demo of this theme on iPhone on safari here http://demo.wenthemes.com/photo-perfect-pro/
    The menus are working fine.
    So my suggestion would be if you have installed any third party plugin like cache and etc. Try deactivating them one by one to see which plugin is creating issue.
    Let us know how it goes.

    Regards!!!

Viewing 15 posts - 8,416 through 8,430 (of 8,657 total)