mrwrongusername
Forum Replies Created
-
Hello Reza and thanks for quick reply.
I found that option to export stats.
Can you tell me where can I find option to import those data to new website?
Best,
MarkoForum: Plugins
In reply to: [WPC Product Bundles for WooCommerce] Increase imageForum: Plugins
In reply to: [WP Hotelier] Booking and AirBnbWe are using Hotello WordPress theme and your plugin is included.
But we will purchase All Bundedled Plugins from you because I see it has a lot of features that we need. One of them is Ical.
Well at least we can sync AirBnB.
Hopefully you will have Booking in future.
Thanks a lot Benito
Forum: Plugins
In reply to: [WP Accessibility Helper (WAH)] WAH not workingHey Alex.
Yep, that helped. Thanks a lot.
Forum: Plugins
In reply to: [WP GPX Maps] Plugin breaks WordPressThanks a lot mate
I have the same issue.
Using Avada theme latest version and WordPress latest release.
Content of tabs is not visible when it is on same page with plugin.
Forum: Plugins
In reply to: [WP GPX Maps] Altitude is not showingI have found solution on this website
https://www.gpsvisualizer.com/
It adds elevation points to gpx file.
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Avada Theme compatibilityI am using Avada with your plugin and I have problem with story titles. It has h2 title tag and I can not change it. What type of custom CSS should I add?
Forum: Plugins
In reply to: [Zeno Font Resizer] Issue with pluginHi Marcel,
Thanks for help but I’ve used some other plugin.
Cheers
Thanks a lot it worked ??
- This reply was modified 6 years, 1 month ago by mrwrongusername.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress center alignThanks a lot Tobias, this helped me.
Regards
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress center alignForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress center alignSorry that didn’t help, but thanks.
When I insert that code it only center it horizontally, but not vertically. It is still aligned vertically top.
Did you have issue like that?
Thanks
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress center alignAnd how can you center content inside tables both horizontally and vertically?
Thanks
Forum: Plugins
In reply to: [WooCommerce] ariation attributes not showing in new order emailI have this code in my CSS but I don’t think it’s affecting WooCommerce
/* Products */ .woocommerce ul.products li.product .desc { background: none; text-align: center; } .woocommerce ul.products li.product .desc h4 { font-size: 20px; line-height: 28px; } .woocommerce ul.products li.product .desc .star-rating { display: inline-block; } .woocommerce div.product p.price ins, .woocommerce div.product span.price ins { font-weight: 400; } .woocommerce ul.products li.product .price ins { font-weight: 400; } .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price { font-size: 16px; } /* Shopping cart */ .woocommerce .widget_shopping_cart .buttons a.button_theme { color: #000000!important; } .woocommerce .widget_shopping_cart .buttons a.button_theme .button_icon i { color: rgba(0, 0, 0, 0.5) !important; }
and this line in fuctions.php
function woo_related_products_limit() { global $product; $args['posts_per_page'] = 6; return $args; } add_filter( 'woocommerce_output_related_products_args', 'jk_related_products_args' ); function jk_related_products_args( $args ) { $args['posts_per_page'] = 3; // 3 related products $args['columns'] = 1; // arranged in 1 columns return $args; } ?>
You think it might be issue?