lozadaOmr
Forum Replies Created
-
Yes I still used Meta Slider, although since this have been a few months old, I’m not sure which solution worked
a.) changed the resolution of the image
b.) regenerate thumbnailForum: Themes and Templates
In reply to: [Customizr] Show the menu, on mobile site loadWell, there is only a definite number of menu and wanted the menu to be visible. But I guess this does not apply to customizr since the nav. is a dropdown list and will overlap.
Forum: Themes and Templates
In reply to: [Customizr] Change the menu dropdown on mobileHere is the link to the site
Forum: Plugins
In reply to: [WP Catalogue] Add product price on Product GridI would suggest you backup your plugin first, test it on a localhost server.
1. Go and edit wpc-catalogue.php
2. Add the following code//Added this part after the $post_data = get_post($post->ID, ARRAY_A); // Which basically came from single-wpcproduct.php $terms1 = get_the_terms($post->id, 'wpccategories'); if($terms1) { foreach( $terms1 as $term1 ) { $slug = $term1->slug; $tname = $term1->name; $cat_url = get_bloginfo('siteurl').'/?wpccategories=/'.$slug; }; }
Then look for this part of the code
while($products->have_posts()): $products->the_post();
and insert this code
//this the code for fetching the price $product_price = get_post_meta(get_the_id(), 'product_price', true);
After this part
$price = get_post_meta(get_the_id(),'product_price',true);
Then look for this line of code, and insert $product_price like this one
$return_string .= '<p class="wpc-title"><a href="'. $permalink .'">'.$title.'?'.$product_price.'</a></p>';
Sorry, for the complicated instructions I was just messing with the plugin files, and eventually made it work.
Forum: Plugins
In reply to: [WP Catalogue] Add product price on Product GridNo, I am not trying to make an e-commerce site, I only wanted to display the product price on grid view.
I managed to display it if it is alright, I can post the solution so if others want it if it is okay. (I just played the plugin and managed to make it work.)
Forum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarI changed it already, but it still overlaps.
Forum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarI have now disabled the plugin, and the slider overlaps on 800×600 resolution.
Forum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarI see I will disable that, I think it was putting .container class, I will post update later, thank you acub
Forum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarAt the moment, I’m having connectivity issues so I can’t check the website itself but here is the link
https://www.sushidelivery.com.phForum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarNo I haven’t tested while plugins because as of this moment I’m relying heavily on plugins to add some of the functions.
Forum: Plugins
In reply to: [WooCommerce] Removing the Page Title, Sorting in ShopThank you @bluu123
The CSS work greatly!
Unfortunately I have done what you suggested on the archive-product.php, but there was no change. ‘Shop’ still appears.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce displays product with StylesI just looked here just in case others get confused when their custom theme doesn’t work with WooCommerce.
Just add this code to your
<body>
tag
body_class()
essentially it becomes
<body <?php body_class(); ?>>
Forum: Plugins
In reply to: [WooCommerce Twitter's Bootstrap] Plugin – Isn't workingI tried using the JBST theme, but unfortunately our server don’t server has not allocated enough memory and had errors using it.
I then tried using Customizr theme and still it doesn’t display properly, although I’m guessing that it is because Customizr doesn’t declare WooCommerce support.
Anyway thank you for your help @bassjobsen
Forum: Plugins
In reply to: [WooCommerce Twitter's Bootstrap] Plugin – Isn't workingThank you @bassjobsen
for the quick response,
I’ll let you know if it got fixed, since we are having server issues.
I was also wondering, will this work if I used a custom-bootstrap theme where I converted it to a WordPress or does it have to specifically use your bootstrap theme?
Forum: Themes and Templates
In reply to: [Customizr] Customizr Slider with Sidebar