Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)
  • Thread Starter iangdesign

    (@iangdesign)

    Thank you for the content fix, it worked nicely.

    I am still having trouble with the active button color. I added the above code to the custom css box, and changed it to #F1D204, however it is still showing as #1595CE. Anything else I can try?

    Thanks!

    Thread Starter iangdesign

    (@iangdesign)

    Hi Matt,

    I did figure it out late yesterday. I was just not adding in the right syntax. Just needed that pound sign at the beginning and the periods between the other classes. Thanks again for your help.

    Thread Starter iangdesign

    (@iangdesign)

    To the top

    Thread Starter iangdesign

    (@iangdesign)

    Thank you that worked.

    One more question. I am trying to get the FlexMLS IDX box to center on the page but it is left adjusting. If you go to the page imaginetucsonhome.com and scroll down to the IDX search you can see it is left adjusting.

    When I go into Chrome Developer Tools and add “margin: auto;” to the element.style in the Style Editor it will adjust it to the center of the page. I just do not know what to target to add to the Additional CSS, to get it to act like this on the site.

    Please see link for example: https://c1.staticflickr.com/1/833/28734431887_b0295d420c_b.jpg

    Any help would be amazing.

    Thread Starter iangdesign

    (@iangdesign)

    Thanks for the replies…that’s what I figured needed to be done.

    Thread Starter iangdesign

    (@iangdesign)

    It seems like that fixed the issue… Now the product is showing up but everything is being pushed out to the sides. Haha…more issues to work on. Thanks for your help!

    Thread Starter iangdesign

    (@iangdesign)

    href=”https://c2.staticflickr.com/2/1466/25442727475_e4cf8f8789_b.jpg”>

    Adding the underscore doesn’t seem to have had any effect on the product page listing.

    Thread Starter iangdesign

    (@iangdesign)

    ok…I’ll give that a go. Will that help with the override issue of the content-product_cat.php not updating?

    Thread Starter iangdesign

    (@iangdesign)

    Thanks for the quick reply Mike. What should I rename it so it is the WooCommerce default?

    Thread Starter iangdesign

    (@iangdesign)

    sellya/woocommerce/archive-product.php:

    <?php
    /**
     * The Template for displaying product archives, including the main shop page which is a post type archive
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/archive-product.php.
     *
     * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer).
     * will need to copy the new files to your theme to maintain compatibility. We try to do this.
     * as little as possible, but it does happen. When this occurs the version of the template file will.
     * be bumped and the readme will list any important changes.
     *
     * @see 	    https://docs.woothemes.com/document/template-structure/
     * @author 		WooThemes
     * @package 	WooCommerce/Templates
     * @version     2.0.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    get_header( 'shop' ); ?>
    
    	<?php
    		/**
    		 * woocommerce_before_main_content hook.
    		 *
    		 * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
    		 * @hooked woocommerce_breadcrumb - 20
    		 */
    		do_action( 'woocommerce_before_main_content' );
    	?>
    
    		<?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
    
    			<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
    
    		<?php endif; ?>
    
    		<?php
    			/**
    			 * woocommerce_archive_description hook.
    			 *
    			 * @hooked woocommerce_taxonomy_archive_description - 10
    			 * @hooked woocommerce_product_archive_description - 10
    			 */
    			do_action( 'woocommerce_archive_description' );
    		?>
    
    		<?php if ( have_posts() ) : ?>
    
    			<?php
    				/**
    				 * woocommerce_before_shop_loop hook.
    				 *
    				 * @hooked woocommerce_result_count - 20
    				 * @hooked woocommerce_catalog_ordering - 30
    				 */
    				do_action( 'woocommerce_before_shop_loop' );
    			?>
    
    			<?php woocommerce_product_loop_start(); ?>
    
    				<?php woocommerce_product_subcategories(); ?>
    
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php wc_get_template_part( 'content', 'product' ); ?>
    
    				<?php endwhile; // end of the loop. ?>
    
    			<?php woocommerce_product_loop_end(); ?>
    
    			<?php
    				/**
    				 * woocommerce_after_shop_loop hook.
    				 *
    				 * @hooked woocommerce_pagination - 10
    				 */
    				do_action( 'woocommerce_after_shop_loop' );
    			?>
    
    		<?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ) ) ) ) : ?>
    
    			<?php wc_get_template( 'loop/no-products-found.php' ); ?>
    
    		<?php endif; ?>
    
    	<?php
    		/**
    		 * woocommerce_after_main_content hook.
    		 *
    		 * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
    		 */
    		do_action( 'woocommerce_after_main_content' );
    	?>
    
    	<?php
    		/**
    		 * woocommerce_sidebar hook.
    		 *
    		 * @hooked woocommerce_get_sidebar - 10
    		 */
    		do_action( 'woocommerce_sidebar' );
    	?>
    
    <?php get_footer( 'shop' ); ?>
    Thread Starter iangdesign

    (@iangdesign)

    Here is the code in the taxonomy-product_cat.php file:

    <?php
    /**
     * The Template for displaying products in a product category. Simply includes the archive template
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/taxonomy-product_cat.php.
     *
     * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer).
     * will need to copy the new files to your theme to maintain compatibility. We try to do this.
     * as little as possible, but it does happen. When this occurs the version of the template file will.
     * be bumped and the readme will list any important changes.
     *
     * @see 	    https://docs.woothemes.com/document/template-structure/
     * @package 	WooCommerce/Templates
     * @version     1.6.4
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    wc_get_template( 'archive-product.php' );
    Thread Starter iangdesign

    (@iangdesign)

    Do you mean the actual markup in the php file?

    Thread Starter iangdesign

    (@iangdesign)

    Hi Mike, I followed the info in your link to the best of my abillity, let me know if you need any other info. See below:

    The website is highspeedind.com when you click on the Products>Pumps>COMPLETE PUMPS/STATORS the product should appear there as it does at the bottom of the homepage.

    Overrides (WooCommerce):	 	sellya/woocommerce/archive-product.php,
    sellya/woocommerce/cart/cross-sells.php,
    sellya/woocommerce/content-product.php,
    sellya/woocommerce/content-product_cat.php version 2.5.0 is out of date. The core version is 2.5.2,
    sellya/woocommerce/content-single-product.php,
    sellya/woocommerce/content-widget-product.php,
    sellya/woocommerce/loop/add-to-cart.php,
    sellya/woocommerce/loop/orderby.php,
    sellya/woocommerce/loop/pagination.php,
    sellya/woocommerce/loop/price.php,
    sellya/woocommerce/loop/sale-flash.php,
    sellya/woocommerce/single-product/add-to-cart/external.php,
    sellya/woocommerce/single-product/add-to-cart/grouped.php,
    sellya/woocommerce/single-product/add-to-cart/simple.php,
    sellya/woocommerce/single-product/add-to-cart/variable.php,
    sellya/woocommerce/single-product/meta.php,
    sellya/woocommerce/single-product/price.php,
    sellya/woocommerce/single-product/product-image.php,
    sellya/woocommerce/single-product/product-thumbnails.php,
    sellya/woocommerce/single-product/related.php,
    sellya/woocommerce/single-product/review.php,
    sellya/woocommerce/single-product/sale-flash.php,
    sellya/woocommerce/single-product/share.php,
    sellya/woocommerce/single-product/short-description.php,
    sellya/woocommerce/single-product/tabs/description.php,
    sellya/woocommerce/single-product/tabs/tabs.php,
    sellya/woocommerce/single-product/title.php,
    sellya/woocommerce/single-product/up-sells.php,
    sellya/woocommerce/single-product-reviews.php,
    sellya/woocommerce/single-product.php,
    sellya/woocommerce/taxonomy-product_cat.php,
    sellya/woocommerce/taxonomy-product_tag.php

    I have tried to manually update the content-product_cat.php via ftp, but for some reason it is not accepting the file.

    Thread Starter iangdesign

    (@iangdesign)

    It looks like the template is affecting the the product category :-/

    I am not expertly versed in php…but is there anything I can do short of switching out the template. I have a little bit of time invested into this template. It is also not supported by the developer anymore.

    Thread Starter iangdesign

    (@iangdesign)

    Thank you for your response! The visibility is set to “Catalog & Search” any other ideas what could be causing this issue?

Viewing 15 replies - 1 through 15 (of 41 total)