Mohammad Ridwanullah
Forum Replies Created
-
Unfortunately, none of the support tickets have received any responses regarding this issue. This is definitely not a good situation
Thank you @tanvir101 My teammate has already submitted a support ticket to you with the number #274760, as we’re using the Pro version. Please handle it as soon as possible.
I have to use Bricks because this form needs to be placed on a Bricks-built page alongside other content. Additionally, it relies on Bricks’ conditional logic, where three different forms will be shown based on user selection on the page. If I may suggest, it would be great if this plugin were made compatible with popular page builders.
Thank you for your response. However, the issue is not related to using custom product types. The problem arises specifically when your plugin is activated; my custom functionality for dynamic pricing stops working as expected.
Could you please help identify which part of my custom functionality might be conflicting with your plugin? If possible, could you provide guidance on how to troubleshoot or resolve this conflict?
I appreciate your assistance in resolving this issue.
If I use regular form using conditional logic, is it possible to display the result after the form being submitted like: 8/10, if there are 8 correct answers from 10?
In front end page, so the visitor can see their score and if they are any wrong answer they can look at them with explanation
Forum: Plugins
In reply to: [Polylang] Integration with ACFSolved by adding this code:
add_filter('pll_get_post_types', 'unset_cpt_pll', 10, 2); function unset_cpt_pll( $post_types, $is_settings ) { $post_types['acf'] = 'acf'; return $post_types; }Amazing, it works.
But can I make it leading zero sequence number?
Like 000001 and then 000002 …..? thank youForum: Developing with WordPress
In reply to: Attempt to read property “ID” on stringThank you very much! You saved my life.
Forum: Plugins
In reply to: [Fluent PDF Generator] Critical error while downloading PDFAlready answered by Support Staff on a ticket, the problem solved by installing all fonts:
Navigate to Fluent Forms -> Integration Modules -> Open Fluent Forms PDF tab, and install all fonts.Hidden fields using CSS it means we have to use pro version to edit the submitted entry, okay.
I tried the random string you’ve given it works very nice, this is a cool feature without any doubt, and it will be more beautiful if we can choose numeric, alphanumeric, and sequential. Thank you in advance.
Yeah, I think this feature is very important, or at least you have to make a fixed shortcode that will never change even after exporting and importing.
I tried to migrate my site from localhost to live server using export and import method, but the shortcodes ruin my site, it’s because while I am exporting the snippetcodes then importing them on another place the shortcodes will totally changes and won’t work, I have to rebuild my site by inserting new shortcodes after migration and it take a long time because my site has thousands of shortcodes.Forum: Plugins
In reply to: [Custom Post Type UI] Custom Post Type Archive PermalinkThank you, but I would like to call the link on breadcrumb, it’s mean that the link should be dynamic to each post type so I can not use a string.
Can you help me please figure out this problem? Here is my code:function my_breadcrumb() { $postType = get_post_type_object(get_post_type()); echo '<a href="'.home_url().'" rel="nofollow">Home</a>'; if ((get_post_type() || is_single()) && !is_search()) { echo " » "; echo '<span style="text-transform: capitalize;">'; echo esc_html($postType->labels->singular_name); echo '</span>'; if (is_single()) { echo " » "; the_title(); } } };Forum: Plugins
In reply to: [WooCommerce] Put shipped_via before shipping costThat’s not my question, I mean in order summary (thank you page) and in the email notifications, not in shipping options
@pluginandplay Thank you 🙂