jayaram558
Forum Replies Created
-
Hello @deniran,
Thanks for the update.
Yes, when a coupon code is applied, I want to disable the quantity-based discount. If no coupon is applied, I want the quantity-based to work as normal.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsMikko,
Ok. I have changed truncate_post( 470 ); to the_excerpt(); in search.php and it worked now. Thanks, Much for your help!
One more quick question. I have selected to match the full word and unchecked OR fallback. But still, I get both the results. Why is that?
Example: if I search for Canada pr, I get results for Canada and also PR where if we have a word program, we get that into results. How do we make it an exact match?
- This reply was modified 5 years, 11 months ago by jayaram558.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsI have changed 30 to 50 in Excerpts and highlights settings. But nothing has changed. Where do I update the settings?
IF the excerpts are created by divi, how do I change it?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsHi Mikko,
Still no luck. its the same and rending the form in search results.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsHere is the results of what you asked – https://pastebin.com/52P16sfB
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsNo Luck. it’s still the same.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsHi Mikko,
The code you have given didn’t help. Unable to exclude the form from top section.
I have added the debug code. You can see it here – https://www.y-axis.com/visa/work/canada/provincial-nominee-program/
You can see the output here – https://ibb.co/HpLVjps
It only shows the HTML of the page but no shortcodes. How do I Exclude the form on top? The form is on 90% of the pages. So all pages are showing the select dropdown options in the excerpt.
- This reply was modified 5 years, 11 months ago by jayaram558.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude form data into excerptsHi Mikko,
I have tried the below, but unable to excldue the form from the excerpt.
add_filter( 'relevanssi_post_content', 'rlv_remove_menu' ); add_filter( 'relevanssi_excerpt_content', 'rlv_remove_menu' ); function rlv_remove_menu( $content ) { $content = preg_replace( '~\[et_pb_fullwidth_code admin_label="Get in touch.*?\[/et_pb_fullwidth_code\]~ims', '', $content ); return $content; }Can you please help. This is the search url – https://www.y-axis.com/?s=canada+pr
Even I have the same issue. Did you get any fix for this?
@dualcube, @greyparrots, @itzmekhokan: Any quick fix for this. The site is live and we are facing these issues now. I think it may be because of woocommerce update?
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] How to add custom field to subject lineI Have the below code in my functions file. They render well in the body text box But not the subject line / heading text. Please let me know how can I add both of them to the email subject.
add_filter( 'kadence_woomail_order_body_text', 'prefered_location_placeholder', 15, 5 ); function prefered_location_placeholder( $body_text, $order, $sent_to_admin, $plain_text, $email ) { if ( $order ) { $prod_names = array(); foreach ($order->get_items() as $key => $lineItem) { $prod_names[] = $lineItem['name']; } $prod_names_full = implode(",", $prod_names ); foreach( $order->get_items() as $item_id => $item ){ $preferred_location = $item['Preferred Location']; } $preferred_location = $preferred_location; $body_text = str_replace( '{order_product_names}', $prod_names_full, $body_text ); $body_text = str_replace( '{preferred_location}', $preferred_location, $body_text ); } return $body_text; }Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] How to add custom field to subject lineCan you please help me with this.
@peekooshk,
I see that WC shipment tracking changed the variables. Use the below. Moreover i moved to WC – APG SMS Notifications as client signed up with MSG91
_wcst_order_trackname _wcst_order_trackno _wcst_order_dispatch_date _wcst_order_track_http_url _wcst_custom_text- This reply was modified 8 years, 1 month ago by jayaram558.
Forum: Plugins
In reply to: [WC - APG SMS Notifications] Woocommerce Shipment variables not showing upCool Thanks!
Forum: Plugins
In reply to: [WC - APG SMS Notifications] Woocommerce Shipment variables not showing upHi.
I got this working.
one more quick question. Can we add hyper-link in sms message. like track here link.
I tried the below but i am getting html in message. Link is being populated, But not as an hyperlink to text.
<a href="%tracking_url%">Track here</a>got this working.
one quick question: Can i use HTML in message template?