Mitchell Ellingson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sinatra] Sidebar on Both sides in WoocommerceBranko,
That would be great! Because right now I use a right sidebar and it is pretty full but I want to add a left sidebar where customers can “filter” products so they can find what they need easier because I have over 12,000 part #’s so far on the website. And with the right sidebar being “full” I don’t want to add anymore cluster to it.
Do you know a timeframe on the next version of the theme?Forum: Themes and Templates
In reply to: [Sinatra] Pixelated Images on shop pageGot it! Thanks!!!
Forum: Plugins
In reply to: [PDF Catalog Woocommerce] Does not show my tablesThanks! If this works the way I think it will, it is going to save us a bunch of time then creating a catalog from scratch and will be more then willing to go to pro version.
I have been searching for easy way to export our products into a PDF catalog!Forum: Themes and Templates
In reply to: [Sinatra] No way to create static Home PageIn your admin section go to Appearance and click on customize.
When that loads on left side you will see options go to Homepage Settings.
That is where you can set as latest posts or static page.Forum: Plugins
In reply to: [WooCommerce] Show Variation DescriptionThanks I will check them out
Forum: Plugins
In reply to: [WooCommerce] Show Variation DescriptionI added the
$variation_desc = $result->description;
and that did not make it show up…
Here is the code I have now.function display_price_in_variation_option_name( $term ) { global $wpdb, $product; if( isset( $product ) ) { $query = sprintf( "SELECT postmeta.post_id AS product_id FROM {$wpdb->prefix}postmeta postmeta LEFT JOIN {$wpdb->prefix}posts products ON ( products.id = postmeta.post_id ) WHERE postmeta.meta_key LIKE 'attribute_%%' AND postmeta.meta_value = '%s' AND products.post_parent = %d", $term, $product->get_id() ); $results = $wpdb->get_results( $query ); foreach ($results as $key => $result) { $variation_id = $result->product_id; $variation_desc = $result->description; } $variation_sku = get_post_meta( $variation_id , '_sku', TRUE ); $term = $variation_sku; } return $term; } add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name', 10, 1 );
Forum: Plugins
In reply to: [WooCommerce] Pagination on categories not workingJetpack is set to “Load more posts using the default theme behavior”. So I played with the other two settings and did not like them in Jetpack and changed it back to use “Load more posts using the default theme behavior” and when I went to re-check my site pagination now works… odd but it seems to be fixed. Thanks for making me check this setting! I appreciate your help very much!
Forum: Plugins
In reply to: [WooCommerce] Show SKU instead of attribute name@conschneider Any ideas on adding that description?
Forum: Plugins
In reply to: [WooCommerce] Pagination on categories not workingI originally tried switching to storefront and it did the same thing. I did go to Sinatra support and that is what they had me do. And it still acted the same way.
Forum: Themes and Templates
In reply to: [Sinatra] Show SKU instead of attribute nameI found my error
Forum: Plugins
In reply to: [WooCommerce] Show SKU instead of attribute nameYes that description ??
Forum: Plugins
In reply to: [WooCommerce] Show SKU instead of attribute nameThat worked perfectly! Is their a way to show the variant description as well with the sku?
Forum: Themes and Templates
In reply to: [Sinatra] Pagination on categoriesThat plugin did not work. It just showed pagination on the same pages as before. I find it odd that the “main categories” do not paginate but the sub categories do… As for coding the documentation looked like it was for the blog page and not the woocommerce pages.
Forum: Themes and Templates
In reply to: [Sinatra] Pagination on categoriesYeah it does the same thing… Is there any way to fix that so it could paginate?
Forum: Themes and Templates
In reply to: [Sinatra] Turn off feature images for pagesYes,
If you set your featured image on the edit page, on your side bar you will find a section called Theme Options. Click the box that says Disable Featured Image. That way you can have a featured image for the page but it will not show on the page. Useful when using social media to promote pages or blog posts.