Forum Replies Created

Viewing 15 posts - 8,086 through 8,100 (of 8,657 total)
  • Author
    Posts
  • in reply to: Can't used custom.php in child theme #8624
    wensolutions
    Keymaster

    Hello @Chavagne

    Nice to know that the problem has been solved. If there are any further query, then, please feel free to post them.
    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-
    https://wordpress.org/support/view/theme-reviews/photo-perfect

    Regards!!
    CHEERS

    in reply to: Disable Discussion/Comments as default #8623
    wensolutions
    Keymaster

    Hello @skipinator

    To disable comments by default you need to go to Admin Panel / Settings / Discussion.
    And uncheck the check-box saying Allow people to post comments on new articles
    As shown in this attachment.
    http://prnt.sc/b7pozt

    Hope this will help you.

    Best Regards!!!

    in reply to: Font Style #8622
    wensolutions
    Keymaster

    Hello @kshoykhet888

    Currently the theme doesn’t provide the option for changing the font style from Customizer.
    But you can achieve this by adding custom CSS.
    For that you need to go to Admin Panel / Appearance / Theme Options / Custom CSS.
    In this section you will see a custom box to write custom CSS. In that box you need to copy and paste the following CSS.

    h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a {
        font-family: 'Trebuchet '!important;
    }
    .main-navigation a {
        font-family: 'Trebuchet';
    }
    .site-title, .site-title a, .site-description, .site-description a {
        font-family: 'Trebuchet' !important;
    }
    body, button, input, select, textarea {
        font-family: Trebuchet !important;
    }

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

    Best Regards!!

    in reply to: Can't used custom.php in child theme #8621
    wensolutions
    Keymaster

    You are welcome,
    Thank you for the appreciation.

    Best regards.

    in reply to: Featured Slider Size #8619
    wensolutions
    Keymaster

    Hello @SmartCaregiver

    When you go to particular post/page edit screen, from where you set your Featured Image you will see:
    Recommended Image Sizes:
    Slider Image : 1420px X 550px

    As you can see here: http://prnt.sc/b7pezq

    Hope this will help you.

    Regards!!!

    in reply to: Tagline Size #8618
    wensolutions
    Keymaster

    Hello @SmartCaregiver

    To make tagline bigger you need to add custom CSS.
    For this you need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    Here you need to copy and paste below CSS:

    
    p.site-description {
        font-size: 20px;
    }
    

    Note: Change to value 20 to your size.
    Hope this will help to resolve your issue.

    Regards!!!

    wensolutions
    Keymaster

    Hello @painfarah

    We are very glad to hear that your problem has been solved.
    If you have any further query regarding the theme never hesitate to create a new ticket.

    Regards,
    CHEERS!!!

    in reply to: Can't used custom.php in child theme #8566
    wensolutions
    Keymaster

    Hello,

    On your child theme you don’t have to copy the whole custom.php of the original theme but rather what you can do is copy the function you want to modify and put in on the functions.php of your child theme.

    For example if you want to change the add primary navigation function just copy the function part which should be

    function photo_perfect_add_primary_navigation(){
    
        if ( ! has_nav_menu( 'primary' ) ) {
          return;
        }
    	$header_menu_text = photo_perfect_get_option( 'header_menu_text' );
        ?>
        <div id="main-nav" class="clear-fix">
            <div class="container">
            <nav id="site-navigation" class="header-navigation" role="navigation">
              <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><span><?php echo esc_html( $header_menu_text ); ?></span>
                <i class="fa fa-align-justify"></i></button>
                <div class="wrap-menu-content">
                  <?php
                    wp_nav_menu(
                      array(
                        'theme_location' => 'primary',
                        'menu_id'        => 'primary-menu',
                      )
                    );
                  ?>
                </div><!-- .menu-content -->
            </nav><!-- #site-navigation -->
           </div> <!-- .container -->
        </div> <!-- #main-nav -->

    and paste it on the child theme’s function.php .

    I hope this helps solve your issue.
    Best regards,

    in reply to: Another headache! – Black Wp-login cannot remove #8554
    wensolutions
    Keymaster

    Hi @painfarah, just go to Settings -> BuddyPress -> Options (tab) and uncheck the box that says ‘Show the Toolbar for logged out users‘ and [Save] it.

    And you are done! Hope this will work for you.

    wensolutions
    Keymaster

    Hello once again @painfarah

    Addressing you first issue, inspecting your site the image seems to be broken and I don’t see the image in PC as well. You need to fix this first so that image will appear.

    And going to second issue. Below custom CSS will help you.

    
    .site-header {
         padding:  0; 
        min-height: 0;
    }
    .search-section {
        padding-top: 37px;
    }
    

    Hope this will help you.
    Let us know how it goes.

    Regards!!!

    in reply to: HELP! Main Menu bar unresponsive & Page issue #8533
    wensolutions
    Keymaster

    Hello @painfarah

    We are very glad to hear that your issue has been resolved.
    So if you have any further query regarding the theme never hesitate to open a new ticket to post your query.

    Have a nice day.

    Regards,
    CHEERS!!!

    in reply to: HELP! Main Menu bar unresponsive & Page issue #8529
    wensolutions
    Keymaster

    Hello @painfarah

    Thanks for your site URL.
    Now that we have checked your site will try to give best from our side.

    The first issue, is that the main menu bar is stationary and it does not move along with the web-page..

    Ok to make the menu bar attached to page as you scroll down the page.
    First go to Admin Panel / Appearance / Customize / Theme Options / Header Options. Here you will see Make Primary Menu Sticky check-box. Now check this check-box which will make your Primary Menu sticky.

    Second issue, i don’t know but if people noticed that whenever one creates a new page and links it to the main menu their is a notable space between the main menu buttons and the beginning of the page

    I think you are particularly referring to the page (eHub) in which you have used
    SiteOrigin Plugin.
    So assuming that we would like to give you custom CSS for that by taking that particular page-id.
    For which you will have to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    Here you need to copy and paste the following CSS:

    
    .page.page-id-67 .site-content {
        padding: 0;
    }
    .page.page-id-67 .entry-content {
        margin: 0;
    }
    

    Hope this will help you.
    Let us know how it goes.

    Best Regards!!!

    in reply to: HELP! Main Menu bar unresponsive & Page issue #8527
    wensolutions
    Keymaster

    Hello @painfarah

    Can you please post your site URL so that we could debug your issue and provide you with some possible solution.
    And for your information this theme is not tested / compatible with the SiteOrigin plugin that you have installed.

    So we would try to find the solution by inspecting the browser source.

    Best Regards!!!

    in reply to: Events Section from Events Manager #8517
    wensolutions
    Keymaster

    Hello @BaltimoreTom

    Currently the theme is not compatible with Events Manager plugin and hence theme doesn’t support this plugin. So, as much as I would love to help with some custom code, this is beyond the support offered for our products, which consists of bug fixing and theme documentation.

    But alternatively you can create posts with some category assigned to it and you can display those category in that Event Section.
    However if you want to add this feature to your site you can always hire a customizer.
    Fill up the form and send your details to hire a customizer http://wensolutions.com/#hire-customizer-form.

    Hope this will help you.
    Regards!!!

    in reply to: Remove "Post Display Section" #8516
    wensolutions
    Keymaster

    Hello @BaltimoreTom

    Hope you are doing well.
    Try adding below custom CSS.

    
    .home.blog .site-content {
        display: none;
    }
    

    OR else if it doesn’t work please post your site URL for more specific solution.

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

    Regards!!!

Viewing 15 posts - 8,086 through 8,100 (of 8,657 total)