Mohsin Rasool
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Input Fields for WooCommerce] Data not passed to cartI am facing the same issue. It is not passed for the first time, as I have ajax add to cart, it works for the second time but it is frustrating for the customer.
Forum: Plugins
In reply to: [Carousel Slider] Conflict with Divi 4.*Hi
I am able to resolve this issue by adding following code in Line #67 of
carousel-slider/includes/class-carousel-slider-script.php
global $post; $_is_carousel = is_a( $post, 'WP_Post' ) && ( 'carousels' == $post->post_type ); if ( ! $_is_carousel ) { return; }
I would appreciate if you can make it part of the plugin. So, we don’t have to fix it after every update.
Hope, it will be beneficial for some.
Thanks
Forum: Plugins
In reply to: [Custom Permalinks] Redirecting to index.php instead of 404Here is the link to screen shot
Forum: Plugins
In reply to: [Custom Permalinks] Redirecting to index.php instead of 404I am getting the same issue in my setup. I have WP Network installed and another issue is the “Permalink” metabox is empty on all my posts. Is it normal?
When I disable this plugin, this page works like it should.
I used this CSS trick to show up.
li.menu-item-has-children:focus-within > ul {opacity: 1 !important;} li.mega-menu:focus-within > ul {opacity: 1 !important;}
I hope, it will help.
Forum: Plugins
In reply to: [SendGrid] Debug LogPing!!
In my case, it was happening due to permanently deleted test orders. I am able to fix it by changing the line 1886 of class-economic-api.php from
$unsynced_orders = $wpdb->get_results("SELECT * from ".$wpdb->prefix."wce_orders WHERE synced = 0 ");
to
$unsynced_orders = $wpdb->get_results("SELECT * from ".$wpdb->prefix."wce_orders WHERE synced = 0 AND order_id IN (select id FROM ".$wpdb->prefix."posts) ");
Just in case if some one else get into such problem.
Thanks
- This reply was modified 6 years, 11 months ago by Mohsin Rasool.
In my case, developer performed the some comments removal tool that stripped off the comments at the top of style.css of child theme. This cause the Types to throw error on updating.
Fixed by adding header in style.css of active theme.
Forum: Plugins
In reply to: [Gravity Forms Constant Contact] “Warning: array_map() …” on settings pageThey are gone for me when I filled in the fields and saved the form.
Forum: Fixing WordPress
In reply to: Fatal Error Call to undefined function wp_json_encode()<a href="https://developer.www.ads-software.com/reference/functions/wp_json_encode/">wp_json_encode()</a>
functions was introduced in WordPress 4.1.0. I believe, it happened because you have older WordPress version but latest Yoast plugin.Forum: Plugins
In reply to: [WooCommerce] Product variations dropdown get empty after loadThanks Caleb for your input. I have already tried above suggestions. None worked.
I figure out that the variation values are same as the label. In the same add-to-cart-variation.min.js, there are two places where variation values needs to be fixed.
Line # 381: “attached” class added to variations. I added
attr_val = attr_val.replace( / /g, '-' ).toLowerCase();
just below theattr_val = attr_val.replace( /"/g, '\\\"' );
Line # 438: It is a variations_match function. To fix this I added
val1 = val1.replace( / /g, '-' ).toLowerCase();
just below theval1 = val1.replace( /"/g, '\\\"' );
Above two changes fixed my issue. I have no idea why variation values were not changing to slugs. But this fixed the issue.
Thanks
Linda, price is specified as an attribute of the shortcode. Here is an example of it.
[paypal_button type=”paynow” name=”product name” amount=”100″]
Please note, This plugin does not add any button in post editor.
Shortcode already has an attribute “btn_url” that should point to an image of button. You can use different button images for different shortcodes. If you are looking for a textual replacement, I am sorry its not available yet.
Forum: Plugins
In reply to: [Custom Permalinks] Permalinks and WPML+1
I am getting same issue..
Forum: Plugins
In reply to: [Broadcast] WPML integration not workingI have the same issue for more than six months now. I am so disappointed from the WPML support team. Its been more than 6 months I am asking them to add Edward’s patch in their release. But, I dont know why they are reluctant to include his patches. They have released two versions since then and none of them includes Edward’s changes.
With the WPML v3.1.6, it took only 2 hours for Edward to patch it. Cant WPML team spent 15 minutes to just synchronized his changes in their release? I just dont understand their way of handling things.
One more thing, I would like to highlight here, Yesterday, I added a support ticket in their forum but they close it with a reply that he will add it. Now, No one cant reply on the same thread and cant ask them of their timeline and progress.
On the other hand, Edward has been so supporting that he patched WPML for me for the second time. Thumbs up to Edward.
Thanks man!