Forum Replies Created

Viewing 15 posts - 8,641 through 8,655 (of 8,657 total)
  • Author
    Posts
  • in reply to: change the footer #527
    wensolutions
    Keymaster

    Hi, I hope this screenshot would help you locate the custom.php file in your server.

    Let me know if you need any more help.

    Thanks

    in reply to: change the footer #519
    wensolutions
    Keymaster

    Hi, can you make sure that the theme you have installed is actually a Photo Perfect theme ? Because it might be the case that you are using different theme and my specific instructions are based under the topic you have posted for a Photo Perfect theme in this support forum.

    Also if possible, please post your site URL so that I can confirm a theme you are using on your site.

    in reply to: change the footer #517
    wensolutions
    Keymaster

    Hi @administratie, actually the file you have to look is custom.php which resides inside following folder path.

    Path: photo-perfect/inc/hook/custom.php ( where ‘photo-perfect’ is your theme folder)

    But custom-header.php you are pointing is not a concerned file for your changes.

    Also please make sure you have downloaded your theme properly or please re-download the package and check.

    Let me know if you still have this problem.

    Thanks

    in reply to: Notice section #515
    wensolutions
    Keymaster

    Hi @Chris!
    Notice section is managed via Header Options i.e. Theme Options -> Header Options. Here you can choose Category for Notice. All the post-title of the posts assigned to that category will be displayed as Notice at the header. If you click on it then it will be displayed as normal blog-post.

    I hope it helps to resolve your issue. However, if you have any confusion on this, kindly post here.

    Thanks!
    Regards,

    in reply to: Footer column #514
    wensolutions
    Keymaster

    Hello @jonathan,
    First of all thanks for choosing Bizlight Pro.
    Number of ‘Footer columns’ can be manipulated from Footer Options i.e. Theme Options -> Footer Options. The number of columns you select here will be added at the Widgets sections i.e Appearance -> Widgets as Footer column one, two etc. And at that widgets section you can drag widgets to the desired column. And it will be displayed at the footer.

    I hope it helps you to understand. If you have any confusion on this, please feel free to post.

    Thanks!
    Regards,

    in reply to: Photo Perfect footer edititing #513
    wensolutions
    Keymaster

    Hello @mbh0001,

    Actual code lies between line number 250 to 254 of custom.php ( inside /inc/hooks/custom.php ) to edit this text of the site footer.

    However, we do not encourage you to directly edit the parent theme files to prevent any changes being overridden from future theme updates. Instead it is always better if you create a separate Child Theme to make all your custom changes there. Learn how to make Child Theme here.

    After that, copy entire code including the function photo_perfect_footer_copyright wraps up this code and paste it in your child theme’s functions.php and edit the part of texts that you want to change.

    Moreover, please do not try to edit the code through WordPress’s default code editor since any error could lead the site down thus no access to admin as well. Consider using FTP client for file edit, uploads and downloads.

    Please note that premium version of this theme ‘Photo Perfect Pro‘ provides numerous flexible options for the user through Theme Options panel to avoid any risks and easy controls over the site elements.

    Kindly, write us back if you have any more queries and problem.

    Thank you

    in reply to: change the footer #504
    wensolutions
    Keymaster

    Hello @administratie,

    For free version of Photo Perfect theme you can edit the footer text at left through Appearance->Customize->Theme Options->Footer Options, however for texts at right could be manually edit through codes in the file at path inc/hooks/custom.php. Consider using Child Theme for this approach.

    However, this feature is easily achievable in Photo Perfect Pro for both and left texts through same Theme Options without editing any PHP codes or files.

    Simply, Go to Appearance->Customize->Theme Options->Footer Options . There you can find the two corresponding fields to change these texts to your own. Finally ‘Save’ and see the output and that’s how it’s done. 🙂

    Hope this helps resolving your query.

    Thanks

    in reply to: Link in "wen associate" footer #483
    wensolutions
    Keymaster

    No problem, Dan. Feel free to post your queries anytime in our forum.

    Thanks

    in reply to: Link in "wen associate" footer #473
    wensolutions
    Keymaster

    Hello Dan,

    Assuming that you have set up your Child theme and you are wishing to put your ‘Privacy Policy’ link just next to your footer copyright text. Well now just copy and paste the following lines of code in your Child Theme’s functions.php .

    <?php
    /**
       * Footer copyright
       *
       * @since  WEN Associate 1.0
       */
      function wen_associate_footer_copyright(){
    
        // Check if footer is disabled
        $footer_status = apply_filters( 'wen_associate_filter_footer_status', true );
        if ( true !== $footer_status) {
          return;
        }
    
        // Copyright
        $copyright_text = wen_associate_get_option( 'copyright_text' );
        $copyright_text = apply_filters( 'wen_associate_filter_copyright_text', $copyright_text );
    
        // Footer navigation
        $footer_menu_content = wp_nav_menu( array(
          'theme_location' => 'footer' ,
          'container'      => 'div' ,
          'container_id'   => 'footer-navigation' ,
          'depth'          => 1 ,
          'fallback_cb'    => false ,
          'echo'           => false ,
        ) );
    
        ?>
        <div class="row">
    
          <?php if ( ! empty( $footer_menu_content ) || ! empty( $copyright_text ) ): ?>
            <div class="col-sm-6">
              <?php if ( ! empty( $footer_menu_content ) ): ?>
                  <?php echo $footer_menu_content; ?>
              <?php endif ?>
              <?php if ( ! empty( $copyright_text ) ): ?>
                <div class="copyright">
                  <?php echo esc_html( $copyright_text ); ?>
                  <a href="http://www.sitename.ext/privacy-policy-page">Privacy policy</a>
                </div><!-- .copyright -->
              <?php endif ?>
            </div><!-- .col-sm-6 -->
          <?php endif ?>
    
          <div class="col-sm-6 pull-right">
    
              <div class="site-info">
                <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wen-associate' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'wen-associate' ), 'WordPress' ); ?></a>
                <span class="sep"> | </span>
                <?php printf( __( 'Theme: %1$s by %2$s.', 'wen-associate' ), 'WEN Associate', '<a href="http://wenthemes.com/" rel="designer" target="_blank">WEN Themes</a>' ); ?>
              </div><!-- .site-info -->
    
          </div><!-- .col-sm-6 -->
        </div><!-- .row -->
    
        <?php
    
      }

    Note:
    Please check for PHP opening tag in the beginning ( may not require if its already there) if it gives error in your case. Otherwise it should work fine.

    Thank you

    in reply to: Link in "wen associate" footer #470
    wensolutions
    Keymaster

    Hello Dan,

    This can be easily achieve by making a Child theme from your current parent theme. You can learn how to make a Child Theme.

    So now entire section of footer can just be edit by copying this function wen_associate_footer_copyright from inc/hook/core.php file and paste this entire function in your child theme’s functions.php which would look like this.

    function wen_associate_footer_copyright(){
    
    	// Just add or edit snippets to modify the things inside it
    
    }

    Let us know if it didn’t work or have problem modifying it.

    Thank you.

    in reply to: How can I add a slider in my homepage.? #464
    wensolutions
    Keymaster

    Hello @joseph,

    Thank you for your interest in adopting this template for your business cause. You can find more cool
    options through settings to configure the elements within this theme.

    Going back to your query here’s how you can set up a slider in your homepage through theme settings.
    Please follow these steps.

    – Go to ‘Appearance -> Customize’. You can find ‘Featured Slider’.
    – Under “Slider Type”, change “Enable Slider in” to either “Entire Site” or “Home Page / Front Page”. Now you will see several options.
    – You need to choose category containing posts with images. Slider will fetch images from those posts. Additional settings are available under “Slider Settings”.

    Further, you can check this theme’s documentation for any confusion.

    Visit http://themepalace.com/theme-instructions/wen-business-pro/#Howtochangefeaturedslidersetting?

    Let us know if you still have some trouble making it work.

    Thanks.

    in reply to: Theme Color #353
    wensolutions
    Keymaster

    Hello bobmax.me,

    Background color and images are displayed only if you have selected Boxed layout in theme options. In Fluid layout, background color is used as in the CSS file. If you want to customize background color in Fluid layout then put your custom CSS in Custom CSS under Theme Options -> Advanced.
    If you have further more question to ask, feel free.

    Thanks 🙂

    in reply to: Banner image above menu #352
    wensolutions
    Keymaster

    You have to add some custom code. Please add the below code on functions.php
    require get_template_directory() . '/inc/custom-header.php'; and add the below code on header.php line 69
    magzimum_admin_header_image();
    Note: Child theme is recommended to customize theme.
    Thanks

    in reply to: Center the top navigation #348
    wensolutions
    Keymaster

    Hi,

    Put the following CSS code in your theme option CSS field. Browse ‘Appearance->Customize->Theme Options-> Advance’ option.

    #site-navigation {
        text-align: center;
    }

    Hope this helps your problem!.

    Thanks

    in reply to: Make collapsible menu horizontal #342
    wensolutions
    Keymaster

    Hi Jennifer,

    The free version of the this theme does not provide the option to show the menu as normal horizontal navigation. PRO version of this theme (http://themepalace.com/theme-instructions/photo-perfect-pro/ ) has an option to switch between the two modes to show menu either horizontally (like a regular website menu) or as a current default structure. Please read the documentation here http://themepalace.com/theme-instructions/photo-perfect-pro/ for details and for more features and functionality available in PRO version.

    All the best !

Viewing 15 posts - 8,641 through 8,655 (of 8,657 total)