Sayedul Sayem
Forum Replies Created
-
Forum: Reviews
In reply to: [Custom CSS for Elementor] Simple and to the point@esamzenhom
Thanks. Appreciate it.Closing the issue cause this is not related to this plugin.
Forum: Plugins
In reply to: [Custom CSS for Elementor] aspect_ratio not workingHi @zckwzk
Thanks for reaching out. I will take a look and get back to you soon. Stay tuned.Forum: Plugins
In reply to: [Custom CSS for Elementor] Undefined array key “_custom_css_f_ele_css_tablet”@hussainmubarak24
Will you please tell exact reproduction steps? Tell me the exact step that you did and how.
I am unable to reproduce the issue.
ThanksForum: Plugins
In reply to: [Custom CSS for Elementor] Breakpoints not same as in ElementorHi @anoriell
I am extremely sorry, currently it doesn’t support to change breakpoints. I am working on automatically take elementor’s breakpoints. Maybe, this will take some times.
I like the filter idea, I will thing about it and will try to implement this if automatically taking breakpoints need more time.
ThanksForum: Plugins
In reply to: [Custom CSS for Elementor] CSS@franksysgfx
The mentioned CSS property is not supported by the Elementor. That’s why it is not working here.
I will suggest you to use that specific CSS property in WordPress Customization.Forum: Plugins
In reply to: [Custom CSS for Elementor] if possible to remove dependencies@ttodua
Thanks for the suggestions. Removing vendor folder is not possible. Because, I am using a composer package to sanitize inputted CSS. I have to prevent any kind of scripting attempt.
The plugin team extensively reviewed this plugin before accepting for having those composer dependency.
I hope you understood. Thanks.Forum: Reviews
In reply to: [Custom CSS for Elementor] interesting butHi @spithz
Currently, It’s working on widgets, sections, columns, and containers. In our future plan, We will try to keep function to write CSS for page specific.Will you please reconsider your review?
Leaving bad reviews for a missing feature will demotivate us to keep the project going.
ThanksForum: Reviews
In reply to: [Custom CSS for Elementor] interesting butHi @spithz
The plugin is definitely working. Over 2000 people using it. Will you please be more specific? What is not working?
N.B. I mentioned in readme it will not work in editor. You have to write and save your CSS in editor and try to see output in preview.- This reply was modified 2 years, 7 months ago by Sayedul Sayem.
Forum: Fixing WordPress
In reply to: How to create ShortCodeHi @mabufoysal
This is how you will be able to create a shortcode.
add_shortcode( 'logo_showcase', 'wpsupport_logo_showcase_func' ); function wpsupport_logo_showcase_func( $atts ) { $atts = shortcode_atts( array( 'id' => '' ), $atts, 'logo_showcase' ); // Do something $html = "<h2>Hello Word!</h2>" return $html; }N.B. Showing shortcode in wp list table is another question or another task
Forum: Reviews
In reply to: [Custom CSS for Elementor] Awesome IdeaThanks
Forum: Reviews
In reply to: [Custom CSS for Elementor] Excellent DXThanks
Forum: Reviews
In reply to: [Custom CSS for Elementor] Awesome IdeaThanks
Hi, @berdini
Will you please share your environment details? Like, wp version, theme, others plugins, etc.
Thank you.Hi @webdevbytes,
You can get posts from multiple post types. Just you have to mention post type in post type args for wp-query. See mentioned code.
$args = array( 'post_type' => array( 'post', 'page', 'movie', 'book' ) ); $query = new WP_Query( $args );Reference: https://developer.ww.wp.xz.cn/reference/classes/wp_query/#post-type-parameters
Correct me if I get you wrong.
N.B. Default post type will be any if you use tax query.
- This reply was modified 4 years, 6 months ago by Sayedul Sayem.