Wasim
Forum Replies Created
-
Forum: Plugins
In reply to: [Table for Divi] Customize table appearrenceHello @cdserveopro
Thank you for using our plugin, and sorry for the delayed response.This is a simple plugin that provides the feature to make HTML table visually. If you’d like to customize the table’s style, you can use Custom CSS to modify it according to your needs.
To add images, links, or other elements in a table cell, you can use standard HTML tags within the table columns.
Thanks!
Forum: Plugins
In reply to: [Table for Divi] Hyperlink Table Entries@runarndgtndizzy Sorry for the delay in replying
You can use the HTML tags in the column/cell to link the text
eg:
<a href="URL">Anchor Text</a>@yf2525 for custom post type you should include post type in the shortcode, check the example code below
[display-posts post_type="work"]
you can follow the plugin docs for other supported parameters: https://displayposts.com/docs/parameters/Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Repeater ?@patrickhaond if you want to add 2-3 PDFs, then you can create separate fields for each. eg. pdf1, pdf2, pdf3 (this can be achieved in a free version).
or
If you want to add multiple PDFs for each post, then you can use the repeater field from the PRO version of ACF
@yf2525 you can fetch and show the posts from the custom post type using WP_Query
or
If you want to do this without coding, you can use the wordpress plugins to show the custom post type posts.
If you use Elementor, Use the Posts widget of this plugin: https://ww.wp.xz.cn/plugins/pro-addons-for-elementor/If you don’t use Elementor and want to do it with shortcode, you can use this plugin: https://ww.wp.xz.cn/plugins/display-posts-shortcode/
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Unable to use elementor@eddievet it seems that you are using the elementor in that page/template that does not have the the_content() function.
the_content() function is required to use the elementor as an editor.
try to deactivate all of your plugins and themes and just active the elementor with WordPress default theme, then check if this works.
TAKE A BACKUP OF YOUR SITE BEFORE CHANGING ANYTHING
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Can I change date format from shortcode?@leomostaza the [acf] shortcode does not have a parameter to format the value.
If you want to use the same format everywhere, you can set the format in the admin area of SCF while creating the field.
or
If you want to use different formats for different places, then you can create your own shortcode, the same as the [acf] shortcode
Forum: Plugins
In reply to: [Table for Divi] Woocommerce module breaks stylingHi @misuracing,
Glad to hear that your issue has been fixed, please review my plugin if you find this plugin helpful.
Thanks!
Forum: Plugins
In reply to: [Table for Divi] Woocommerce module breaks styling@misuracing Sorry for the inconvenience and delay in getting back to you.
The Links you have shared above are not working, can you please resend the screenshot or link of the website so that I can check if this is the plugin issue or something else.
Thanks!
Forum: Reviews
In reply to: [Table for Divi] Great Free Plugin@dineshyadav280 Thank you for your review
Forum: Plugins
In reply to: [Table for Divi] Mobile Support@toddcsp Sorry for you inconvenience. We will add this to the upcoming version.
For the time being you can use the below code to make your table responsive for mobile.@media (max-width: 767px) {
.tfdt_module .table-for-divi {
overflow: auto;
box-shadow: 0 0 5px rgba(0,0,0,.2);
}
}Forum: Reviews
In reply to: [Table for Divi] Amazing PluginThanks for your review
- This reply was modified 2 years, 1 month ago by Wasim.
Forum: Reviews
In reply to: [Table for Divi] Does not work on mobile@toddcsp
Sorry for your inconvenience. This plugin provide the HTML code of the table which you can make responsive using the CSS, you are free to do CSS code for your table.
You can get reference from the bootstrap to make your table responsive. you just need to add little bit of code to make your table responsive.
below is the code to make your table responsive for mobile@media (max-width: 767px) {
.tfdt_module .table-for-divi {
overflow: auto;
box-shadow: 0 0 5px rgba(0,0,0,.2);
}
}