Forum Replies Created

Viewing 15 posts - 8,596 through 8,610 (of 8,657 total)
  • Author
    Posts
  • in reply to: Gallery Issue with Mobile #1008
    wensolutions
    Keymaster

    Yes as per your requirement to replace the existing lightbox you would need to go customize the code and override parent files from Child Theme approach.

    Along with this you would need to work around with the design adjustments. If you do not feel comfortable playing with codes we recommend you to Hire a Customizer for all these tweaks needed.

    Thanks

    in reply to: how do I add social media icons? Do I have to purchase pro? #1000
    wensolutions
    Keymaster

    Hello @1drawingfool

    Hi this reply is in base with the support title you have posted here. It seems you have forgot posting your query description.

    Anyways its simple, just go the ‘Menu’ section at the backend & create a menu. Then, assign the ‘Location’ of that menu to ‘Social Menu’. After that add ‘Custom links’ to that menu where you have to provide valid URL like http://facebook.com, http://twitter.com etc for each of those custom links. Lastly, [Save] it and you are done.

    Hope that helps!

    in reply to: Failed to write file to disk. #999
    wensolutions
    Keymaster

    Hi ola, first check your WP folder permissions. It is possible the “wp-content/uploads” directory has the wrong folder permission.

    in reply to: Download Resume Button on Home Page #993
    wensolutions
    Keymaster

    Well, since the text ‘Download Resume’ is hard-coded inside a theme file you have to override this behavior by making a Child Theme.

    After making a Child Theme and activating it you would have two new files namely style.css and functions.php.

    In your functions.php put this custom code just below your existing code.

        function biography_after_text_slider() {
            global $biography_customizer_all_values;
            $biography_header_contact_url = $biography_customizer_all_values['biography-header-contact-url'];
            $biography_header_resume_url = $biography_customizer_all_values['biography-header-resume-url'];
            if( empty( $biography_header_contact_url) && empty ( $biography_header_resume_url ) ){
                return;
            }
            ?>
            <div class="goest-btn">
                <?php
                if( !empty( $biography_header_contact_url) ){
                    ?>
                    <a class="button button-feature button-contact" href="<?php echo esc_url( $biography_header_contact_url ); ?>">
                        <?php _e( 'Contact Me', 'biography' );?>
                    </a>
                    <?php
                }
                if( !empty( $biography_header_resume_url) ){
                    ?>
                    <a class="button button-feature button-resume line-btn" href="<?php echo esc_url( $biography_header_resume_url ); ?>">
                        <?php _e( 'Buy My Book ', 'biography' ); // changing to your custom text?>
                    </a>
                    <?php
                }
                ?>
            </div>
            <?php
        }

    Please notice in the code above, I have changed the default text to your custom text for button. This should work for you.

    Thanks

    in reply to: Single Post Blog Page #991
    wensolutions
    Keymaster

    Cheers ! glad that it worked!!. If you have any other problem or queries, feel free to post.

    Thanks

    in reply to: Single Post Blog Page #989
    wensolutions
    Keymaster

    Try increasing the ‘top’ CSS property that would level the sidebar with post title. I think you can replace it with following value.

    .single div#secondary {
        position: relative;
        top: -88px; /* adjust this CSS value if required */
    }
    in reply to: Single Post Blog Page #986
    wensolutions
    Keymaster

    Well, did you paste the given code in required Custom CSS field of your Customizer ?

    in reply to: Single Post Blog Page #984
    wensolutions
    Keymaster

    Hi kevlvn,

    Custom CSS should do the trick in this case. Please paste the following snippet in Appearance -> Customize -> Theme Options -> Custom CSS field.

    .single .wrapper.page-inner-title {
        width: 66%;
    }
    
    .single div#secondary {
        position: relative;
        top: -60px;
    }

    Hope this helps resolving this issue.

    Thanks

    in reply to: Header Section #983
    wensolutions
    Keymaster

    Hello Martin,

    Thank you for using Bizlight Pro theme.

    Well, it is the default slider text that appears after you set up your theme. This is not hard-coded either.

    Therefore you can customize this slider part from Appearance -> Customize -> Home / Front Featured Slider panel in your dashboard.

    You can get the detail documentation on how to set up the slider from various options like pages, posts or category.

    http://themepalace.com/theme-instructions/bizlight-pro/#HowtomanageSlider?

    The slider text would take a page or post title and make sure you have uploaded featured image for the post or page that you want them to appear on the slider.

    Hope this help removing your confusion.

    in reply to: Limit blog view to category #982
    wensolutions
    Keymaster

    Hello

    Thank you for choosing Bizlight Pro.

    You have to do little customization by making a Child Theme.

    First make a Child Theme and activate it before you go making the changes. You will have two new files functions.php and style.css .

    After you are done with Child Theme set up copy and paste the following piece of PHP code in your functions.php file.

    if ( ! function_exists( 'include_category' ) ) :
    function include_category( $query ) {
       if ( $query->is_front_page() && $query->is_main_query() ) {
           $query->set( 'cat', '1' );
       }
    }add_action( 'pre_get_posts', 'include_category' );
    endif;

    In the dashboard, click on category and edit category you want to display on front page. You can find the tag ID (it is the ID of category ) right in the address bar. Replace 1 by the tag ID you saw on address bar.

    You can find the screenshot here-> http://prntscr.com/9tatq5

    Hope this helps !

    in reply to: Right Category Drop Down Menu #965
    wensolutions
    Keymaster

    Your entire functions.php code with above custom code should be look like this.

    <?php
    /**
    * Child Theme functions and definitions
    *
    */
    /**
    * Loading Parent theme stylesheet
    *
    */
    add_action( 'wp_enqueue_scripts', 'photoperfect_child_enqueue_styles' );
    function photoperfect_child_enqueue_styles() {
    wp_enqueue_style( 'photoperfect-parent-style', get_template_directory_uri() . '/style.css' );
    }
    
    function photo_perfect_add_category_navigation(){
       $show_category_dropdown = photo_perfect_get_option( 'show_category_dropdown' );
       if ( true !== $show_category_dropdown ) {
         return;
       }
       ?>
       <div id="category-menu" class="clear-fix header-navigation">
         <div class="container">
           <button class="nav-list-btn"><i class="fa fa-list"></i><span><?php _e( 'Category', 'photo-perfect' ); ?></span></button>
           <div class="category-list-wrapper">
             <ul>
             <?php wp_list_categories( 'title_li=&depth=2' ); ?>
             </ul>
           </div><!-- .category-list-wrapper -->
         </div><!-- .container -->
       </div><!-- #category-menu -->
       <?php
     }
    in reply to: Right Category Drop Down Menu #953
    wensolutions
    Keymaster

    Hello Del,

    First make a Child Theme and activate it before you go making the following changes. You will have two new files functions.php and style.css .

    After you are done with Child Theme set up copy and paste the following piece of PHP code in your functions.php file.

    function photo_perfect_add_category_navigation(){
       $show_category_dropdown = photo_perfect_get_option( 'show_category_dropdown' );
       if ( true !== $show_category_dropdown ) {
         return;
       }
       ?>
       <div id="category-menu" class="clear-fix header-navigation">
         <div class="container">
           <button class="nav-list-btn"><i class="fa fa-list"></i><span><?php _e( 'Category', 'photo-perfect' ); ?></span></button>
           <div class="category-list-wrapper">
             <ul>
             <?php wp_list_categories( 'title_li=&depth=2' ); ?>
             </ul>
           </div><!-- .category-list-wrapper -->
         </div><!-- .container -->
       </div><!-- #category-menu -->
       <?php
     }

    Now put following line of CSS code in style.css file.

    .header-navigation ul .toggled-on {
        display: block;
     }
    
    button, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, .comment-reply-link:focus{
       outline: none !important;
    }

    This should do the trick appearing the sub-menu categories as dropdown like the one in main Menu.

    in reply to: Funny orange background colour appearing when loading. #942
    wensolutions
    Keymaster

    Well, it’s because the header image is taking some seconds of delay to fully load.

    Following CSS could do the trick, please paste it in Custom CSS section of your Theme Customizer option.

    .site-header {
       background-color: transparent;
       overflow-x: hidden;
       padding-top: 20px;
    }

    Thanks

    in reply to: Link from Client testimonial broken #941
    wensolutions
    Keymaster

    That bit of color dot underneath the testimonial is a navigation button when you have more than one testimonial to display. If you currently have one testimonial then you can hide it temporarily through custom CSS.

    Just go to Appearance -> Customize -> Theme Options -> Custom CSS and put the following bit of code.

    #testimonial-slide ol.carousel-indicators li {
        display: none;
    } 

    Thanks

    in reply to: Images for portfolio #940
    wensolutions
    Keymaster

    Image size should be greater than 365 x 265 px .

    Thanks

Viewing 15 posts - 8,596 through 8,610 (of 8,657 total)