Aims Infosoft
Forum Replies Created
-
Hello,
Please check our latest updated version plugin.
In that you can modify front end wording from contact form 7 textarea backend, also you can enter message in any language.Please check and let me know, if any
Thanks.
Hello,
Thanks for drawing attention towards the error.
We are still improving the plugin to make it best.Can you please inform us about what language you want the message to be translated in and what is the exact translation in your preferred language?
At the moment it is only supporting English language, But in the next update we will try to add as many as other languages possible.
Thanks.
- This reply was modified 2 years ago by Aims Infosoft.
Forum: Plugins
In reply to: [WooCommerce] Product Search Sorting OptionHello,
Please follow below steps in the backend:
Step 1: Appearance -> Customize
Step 2: Click on Woocommerce
Step 3: click on Product Catalog and choose option to Default product sorting.
Please check below screenshot.
https://prnt.sc/1y1hwzwFor that you need to more customization and you have required knowledge of php and woocommerce.
Also if you update the default search query via hook, It will be update sitewide as per my knowledge in WooCommerce.Thank you
Forum: Plugins
In reply to: [WooCommerce] Product Search Sorting OptionHello,
For that,
you need to add below code in functions.php
function alphabetical_shop_ordering( $sort_args ) { $orderby_value = isset( $_GET['orderby'] ) ? woocommerce_clean( $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) ); if ( 'ascending' == $orderby_value ) { $sort_args['orderby'] = 'title'; $sort_args['order'] = 'asc'; $sort_args['meta_key'] = ''; } if ( 'descending' == $orderby_value ) { $sort_args['orderby'] = 'title'; $sort_args['order'] = 'desc'; $sort_args['meta_key'] = ''; } return $sort_args; } add_filter( 'woocommerce_get_catalog_ordering_args', 'alphabetical_shop_ordering' ); function custom_wc_catalog_orderby( $sortby ) { $sortby['ascending'] = 'Sort by (A-Z)'; $sortby['descending'] = 'Sort by (Z-A)'; return $sortby; } add_filter( 'woocommerce_default_catalog_orderby_options', 'custom_wc_catalog_orderby' ); add_filter( 'woocommerce_catalog_orderby', 'custom_wc_catalog_orderby' );
tested and Worked
Thank you
Forum: Fixing WordPress
In reply to: Google Maps address not workingDid you get any errors in the console?
Sometimes because of any Js conflict google Maps address not working properly. You need to share the link where the google map address not working
Thanks
Forum: Developing with WordPress
In reply to: Hiding the Update Cart button- Avada themeHello,
Please share url. so, get more idea about your query.
Thanks
Hello,
Please remove image in wp_strip_all_tags() in the ‘post_content’.
Please use it :
'post_content' => wp_strip_all_tags($result->descriptions).$result->image ,
Thanks
Hello,
For that, you can customize archive-product.php and content-product.php files.
you can check how to override WooCommerce template files.
https://docs.woocommerce.com/document/template-structure/
Thanks
Forum: Fixing WordPress
In reply to: Bullet list problemHello,
Without url not possible, which theme do you used?
Thanks
Forum: Fixing WordPress
In reply to: Bullet list problemHello,
Please share url. so, get more idea about your query.
Thanks
Forum: Fixing WordPress
In reply to: Problem with anchors #linkHello,
you can use jquery animate for that.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Cart Shipping/Subtotal Alignment IssueHello
Please Add Below Code in active theme style.css Or in
Appearance->Customize->Additional CSS
@media (max-width: 768px){ .product-quantity .quantity{ width: 100%; float: none; } .product-quantity .quantity label{ float: none; } .product-quantity .quantity input{ float: none; margin-left: auto; text-align: right; } }
Thanks
Forum: Developing with WordPress
In reply to: Creating a pluginForum: Plugins
In reply to: [WooCommerce] Cart Shipping/Subtotal Alignment IssueHello,
please add below css code in active theme style.css or in
Appearance->Customize->Additional CSS@media (max-width: 767px) { ul#shipping_method li { display: flex; width: 100%; } }
Thanks
Forum: Plugins
In reply to: [WooCommerce] How to: Dynamic Display of Subcategories of Current Category?Hello,
Please check the below code. For that in url pass the parent-category name like
https://yourdomain.com/product-category/categorynameWhere category name is your current parent-category
$terms = get_terms([ 'taxonomy' => get_queried_object()->taxonomy, 'parent' => get_queried_object_id(), ]); foreach ( $terms as $term) { echo '<p class="filters"><a href="' . get_term_link( $term ) . '">' . $term->name . '</a></p>'; }
Please check and let me know.
Thanks