Forum Replies Created

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • in reply to: Woocommerce amazon affiliate store #95776
    smoothiechode
    Participant

    What kind of price are we looking at to get a customizer to create a simple slider on the store homepage (2) and a seperate featured content section to be displayed in all pages/products in the store (4)?

    I have all of content and pictures ready.

    in reply to: Woocommerce amazon affiliate store #95603
    smoothiechode
    Participant

    1. When making changes to the Woocommerce layout from the drop-down list, the changes made are not showing up on the store. For example, when selecting no sibebar (full width), the sidebar remains.

    2. Just the same slider provided by full frame pro, but to be displayed only on the store homepage http://www.tinderprofile.com/store and to have 8 different slides corresponding to the 8 product categories (TinderProfile.com exclusives, cameras, software, books, etc). If possible, they change automatically every few seconds rather having to clicking arrows – but not a necessity.

    4. I already am using featured content in my homepage http://www.tinderprofile.com. Is it possible to add a seperate one in the footer of my store for this purpose. If so, how?

    5. Colour issue has been resolved.

    Kind regards.

    in reply to: Woocommerce amazon affiliate store #95595
    smoothiechode
    Participant

    Thanks for your reply.

    I’ll look in more detail what you have written and get back to you tonight.

    in reply to: Woocommerce amazon affiliate store #95558
    smoothiechode
    Participant

    also,

    i’ve been trying to change the color settings and it appears that I have accidentally changed the background in the store from white to light grey. This has left the product and product category pictures with a different colour to the background which looks bad as you can see here: http://www.tinderprofile.com/store.

    Can someone please direct me to where I can correct this?

    I’ve tried changing all colors back to default but it’s still there.

    in reply to: How to add parent indicators (arrows) on primary menu #95072
    smoothiechode
    Participant

    Thank you!

    smoothiechode
    Participant

    Thank you, that worked 🙂

    Did you manage to find out how to correct the page.php file?

    smoothiechode
    Participant
    <?php
    /**
     * The template for displaying all pages
     *
     * This is the template that displays all pages by default.
     * Please note that this is the WordPress construct of pages
     * and that other 'pages' on your WordPress site will use a
     * different template.
     *
     * @package Catch Themes
     * @subpackage Full Frame
     * @since Full Frame 1.0
     */
    
    get_header(); ?>
    
    	<main id="main" class="site-main" role="main">
    
    		<?php while ( have_posts() ) : the_post(); ?>
    			<?php fullframe_post_navigation(); ?>
    			<?php get_template_part( 'content', 'page' ); ?>
    			<?php fullframe_post_navigation(); ?>
    			<?php
    				/**
    				 * fullframe_comment_section hook
    				 *
    				 * @hooked fullframe_get_comment_section - 10
    				 */
    				do_action( 'fullframe_comment_section' );
    			?>
    
    		<?php endwhile; // end of the loop. ?>
    
    	</main><!-- #main -->
    
    <?php get_sidebar(); ?>
    <?php get_footer();

    Also, how can I edit this page.php file so that the resulting previous and next page links correspond to the order numbers assigned to each page in the Pages section of the backend (Pages >> Quick Edit >> Order). At the moment the pages are in completely the wrong order.

    Kind regards

    smoothiechode
    Participant

    No, not the same header throughout the site.

    For pages containing woocommerce products, it is currently automatically displaying the ‘product image’ as the header image, which i do not want as the product is already displayed on the page. For example:

    http://tinderprofile.com/product/canon-eos-rebel-t5-digital-slr-camera-kit-with-ef-s-18-55mm-is-ii-lens/

    As you can see, the main product image is automatically being replicated in the header. How do I prevent this?

    smoothiechode
    Participant

    Such an option does not exist.

    Do you mean: Entire Site, Page/Post Featured Image

    If so, the product pages are still displaying the product image as the header image so doesn’t work.

    smoothiechode
    Participant

    Hi Mahesh.

    Thanks for the clarification.

    I just upgraded to full frame pro and so will need to create another child theme so that this page nav will be in my new premium child theme.

    My question is:

    How will the code for the page.php file in the premium child theme be different compared to the the full frame child theme page.php you sent me earlier in the thread?

    I am also looking to add a header.php file to my new full frame pro child theme that will prevent the product pages from displaying the product image as the header image, like in this page:

    http://tinderprofile.com/product/canon-eos-rebel-t5-digital-slr-camera-kit-with-ef-s-18-55mm-is-ii-lens/

    Instead I just want to display the same single header image for all product pages.

    Kind regards.

    in reply to: Woozone plugin compatability #94619
    smoothiechode
    Participant

    Is that the case for woozone (not woocommerce) as well?

    smoothiechode
    Participant

    Thanks very much for the info.

    I have added a child theme folder in the directory entitled ‘full-frame-child’ and added to this folder the following files:

    1. file name = style.css

    /*
    Theme Name: Full Frame Child Theme
    Theme URI: https://catchthemes.com/themes/full-frame/
    Author: Full Frame Team
    Author URI: http://catchthemes.com
    Description: Full Frame is a free theme created by Catch Themes
    Version: 1.0
    License: GNU General Public License, version 3 (GPLv3)
    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    Tags: dark, light, blue, white, black, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
    Text Domain: fullframe
    Template: full-frame
    */
      
    /* =Child Theme Custom CSS
    -------------------------------------------------------------- */

    2. file name = functions.php

    <?php
    /**
     * Child Theme functions and definitions
     *
     */
     /**
     * Loading Parent theme stylesheet
     *
     */
    add_action( 'wp_enqueue_scripts', 'catchbox_child_enqueue_styles' );
    function catchbox_child_enqueue_styles() {
        wp_enqueue_style( 'catchbox-parent-style', get_template_directory_uri() . '/style.css' );
    }
    

    3. file name = page.php

    <?php
    /**
     * The template for displaying all pages
     *
     * This is the template that displays all pages by default.
     * Please note that this is the WordPress construct of pages
     * and that other 'pages' on your WordPress site will use a
     * different template.
     *
     * @package Catch Themes
     * @subpackage Full Frame
     * @since Full Frame 1.0
     */
    
    get_header(); ?>
    
    	<main id="main" class="site-main" role="main">
    
    		<?php while ( have_posts() ) : the_post(); ?>
    			<?php fullframe_post_navigation(); ?>
    			<?php get_template_part( 'content', 'page' ); ?>
    			<?php fullframe_post_navigation(); ?>
    			<?php
    				/**
    				 * fullframe_comment_section hook
    				 *
    				 * @hooked fullframe_get_comment_section - 10
    				 */
    				do_action( 'fullframe_comment_section' );
    			?>
    
    		<?php endwhile; // end of the loop. ?>
    
    	</main><!-- #main -->
    
    <?php get_sidebar(); ?>
    <?php get_footer();
    

    I have activated the child theme and can see the page navigation that I wanted has been added. The pages are in the wrong order but nevertheless it looks good.

    My question to you Mahesh is this… Am I supposed to just stay on the child theme now and just manually change the settings back so they are the same as the parent theme? While the page navigation is now there, i’ve lost all the settings I set for the parent theme such as the featured content, header images and everything else.

    OR

    Is there a way to go back to working on the parent theme and simply just add the page navigation from the child theme to the parent theme? I presume this was the purpose of adding the child theme in the first place, but i’d be grateful if you could help me execute this final step.

    Thanks again.

    smoothiechode
    Participant

    It’s telling me to add the following code but not sure where it goes in this theme:

    <?php echo next_page_not_post(); ?>
    <?php echo previous_page_not_post(); ?>

    smoothiechode
    Participant

    Found this plugin that works specifically for pages instead of posts:

    https://wordpress.org/plugins/next-page-not-next-post/

    But can’t get it to work. Is it possible to use this plugin with your theme? If so, how?

    smoothiechode
    Participant
    smoothiechode
    Participant

    Dashboard=> Appearance=> Customize=> Theme Options=> Pagination Options and Select Numeric in Pagination Type.

    I’ve tried this. But doesn’t work.

    smoothiechode
    Participant

    ?

    smoothiechode
    Participant

    I’m using the WP-PageNavi plugin.

    I need to find calls to next_posts_link() and previous_posts_link() in the code and replace them with the following code:

    <?php wp_pagenavi(); ?>

    Could you direct me to exactly where the lines in the theme code for calls to next_posts_link() and previous_posts_link() are so I can replace them?

    `

    in reply to: [My first post] How to have no pages/posts on homepage #94098
    smoothiechode
    Participant

    The problem with using 1680×720 is that there are very few relevant images around with that exact size and I am not familiar with any basic photo editing skills.

    I specifically filtered for images on google greater than 2MP and that were wide in aspect ratio so that it would approximately be the same as the recommended dimensions.

    This doesn’t just go for the homepage but for all pages on the site.

    Could you explain more about using the image with the same aspect ratio? Is this what I should do?

    I noticed that when I changed the setting to slider image it did temporarily work and the image looked great but then it seems to go back to the larger image when i refresh.

    in reply to: [My first post] How to have no pages/posts on homepage #94057
    smoothiechode
    Participant

    Thanks so much Mahesh. Worked.

    I like the theme a lot.

    I do however have one more issue that I was wondering if you could help me with Mahesh.

    When I go to appearance >> customize >> header image >> page/post featured header image size and select slider image it doesn’t seem to convert into a slider image and stays very large.

    Do you know what might be causing this?

Viewing 20 posts - 1 through 20 (of 20 total)