june01
Forum Replies Created
-
I’ve investigated the problem and found out it’s caused by the Jetpack plugin, so nothing wrong with the Elementor plugin.
Ok thanks a lot
I’ve tried on local and online server but both same problem. I’ve send a support ticket with the description of the problem.
Here is the link to the image -> Click Here
I don’t need the quantity button and add to cart because there is no purchase option on this website. So, I want to completely disable them not just by CSS.
As for the website URL, it is currently localhost only.
For the variations I am using this plugin -> Variation Swatches for WooCommerceok, thank you for your reply.
I’ve just installed this plugin, so I am using the free version of it for now.
About step3, then I would like to just add a new column to the table (product,qty,price) using code and the custom template. The column is going to display the sub category. I think I can display the category but the problem is how to add the column in the first place?
can you please help me with this?That’s the code that I’ve written so far:
// define the wpo_wcpdf_before_item_meta callback function action_wpo_wcpdf_before_item_meta( $template, $item, $order ) { if ($template == 'invoice') { $items = $order->get_items(); foreach($items as $i) { $product = $i->get_product(); $product_categories = $product->get_category_ids(); foreach($product_categories as $cat_id){ if( $term = get_term_by('id', $cat_id, 'product_cat') ) { if($term->parent == '16') echo $term->name.': '.$term->parent; else echo "no parent"; } } } } };I can’t find the “Comment Form” option?
Forum: Themes and Templates
In reply to: [OceanWP] Create new icon in social icon widgetdeactivated all plugins but same problem. It still ignores the icon_class and uses the array key instead.
Just saw that I made a mistake in my previous message. The new code looks like this:
// Telegram icon $array['telegram-plane'] = array( 'name' => 'Telegram', 'icon_class' => 'fab fa-telegram-plane', );Forum: Themes and Templates
In reply to: [OceanWP] Create new icon in social icon widgetI’ve tested a bit and it seems like it’s ignoring the class provided in icon_class and instead it uses the array key. I’ve changed the code from
$array['telegram']to$array['telegram-plane']and it displays the icon correctly now. You can see it in the footer of the website link I’ve sent.This is the new code:
// Telegram icon $array['telegram'] = array( 'name' => 'Telegram', 'icon_class' => 'fab fa-telegram-plane', );Forum: Themes and Templates
In reply to: [OceanWP] Create new icon in social icon widgetCleared the cache but still same problem. I’ve solved the color problem using my own CSS code but I need to change the Telegram icon.
This is my code:
// Telegram icon $array['telegram'] = array( 'name' => 'Telegram', 'icon_class' => 'fab fa-telegram-plane', );This is the link to the website: my website
As you can see in the footer it’s using the telegram class for the icon and not telegram-plane.
Can I solve this problem myself using cPanel?
Forum: Plugins
In reply to: [Helpful] display helpful at the very end of the post contentworks perfectly the helpful plugin is now below the footnotes. thanks a lot for your help and this great plugin!
Forum: Plugins
In reply to: [Helpful] display helpful at the very end of the post contentI am using the footnotes plugin with ocean wp theme.
I want the helpful plugin to be displayed for all posts, can I do this with the shortcode?
thanks a lot, it works.
Forum: Themes and Templates
In reply to: [OceanWP] Create new icon in social icon widgetThanks I’ve added the new social icons but how can I set the original brand color to them? Also the telegram icon does not display correctly. I’ve set the class of the icon with no circle around it, but it displays the circle. I don’t have this problem in the topbar.