Rafik
Forum Replies Created
-
Hello,
Thanks for reaching here.
Its look like you are using our PRO plugin but this is free plugin support form
We can not provide any help here related to the PRO plugin
If you are PRO user please raise your query in our siteThanks
- This reply was modified 6 years, 10 months ago by Rafik.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Onesignal notificationHello,
Thanks for reaching here.
We have not more idea about the “Onesignal” plugin, You can take help of the “Onesignal” plugin support form and ask them they are providing custom post type support or not.Thanks
Forum: Plugins
In reply to: [Post Category Image With Grid and Slider] UPLOAD IMAGE BUTTONHello,
You can not upload a category image from the front, there is no such functionality available.
You can enable here by checking checkbox here for which taxonomy you want image upload button
You can use
taxonomy="category"parameter for a specific category, otherwise it will show the default “category” texonomy images in the slider.- This reply was modified 6 years, 10 months ago by Rafik.
Hello,
You can not upload a category image from the front, there is no such functionality available.
First of all, I have seen your shortcode, there is no such parameter available parent_240 =”all”, You can see plugin description all parameter detail available.
You can enable custom image option in the category from here
https://nimb.ws/gxLOeE e.g you want the image upload on the default post category then you will select this option https://nimb.ws/uhRvez
then it will automatically enable here https://nimb.ws/XrCToUif you not use taxonomy paremeter then it will show default post category
You can usetaxonomy="category"parameter for specific taxonomy for e.g:- if you want news texonomy category then you will usetaxonomy="news_category"in the shortcodeHello,
Thanks for the reaching here
if you want to add the shortcode in the template file then you can add this way with multiple parameters.
<?php echo do_shortcode('[pci-cat-slider show_title="true" term_id="1" autoplay="true"]'); ?>Here
term_id="1"is just for example it will be your category id.if you want to add the shortcode in the editor then no need to add PHP tag and do_shortcode() function just add this shortcode
[pci-cat-slider show_title="true" term_id="1" autoplay="true"]Forum: Plugins
In reply to: [Post grid and filter ultimate] On load grid animation disableHello,
If you do not want animation then need to customize the plugin
because there is no setting available at this moment.go to
plugins/post-grid-and-filter-ultimate/assets/js/pgafu-public.js
line no 7 and add this parameteranimationDuration: 0,like this way
jQuery('.pgafu-filtr-container').filterizr({ selector : '.pgafu-filtr-container', layout : 'sameWidth', animationDuration: 0, });Note:- When you update the plugin your changes will lose
- This reply was modified 6 years, 10 months ago by Rafik.
Forum: Plugins
In reply to: [WP Responsive Recent Post Slider/Carousel] Doesnt work with Beaver BuilderHello,
Is there a way to show the FULL content rather than just the excerpt?
Ans: Sorry for the inconvenience, At this moment, this functionality not available.Also, is there a way to show the “Tag” taxonomy?
Ans: Yes, please try this shortcode parameter[recent_post_slider post_type="post" taxonomy="post_tag"]Forum: Plugins
In reply to: [WP News and Scrolling Widgets] display categories namesHello,
Did you mean you want only news category listing?
Forum: Plugins
In reply to: [Search and Navigation Popup] Search custom post typesHello,
This plugin also searches custom post type, but it will not search if the post type excluded from the search when post type registered.
You can use this code to get the result
Please add below code in your active theme functions.php filefunction rc_add_cpts_to_search($query) { // Check to verify it's search page if( is_search() ) { // Get post types $post_types = get_post_types(array('public' => true, 'exclude_from_search' => false), 'objects'); $searchable_types = array(); // Add available post types if( $post_types ) { foreach( $post_types as $type) { $searchable_types[] = $type->name; } } $query->set( 'post_type', $searchable_types ); } return $query; } add_action( 'pre_get_posts', 'rc_add_cpts_to_search' );Forum: Plugins
In reply to: [WP Responsive Recent Post Slider/Carousel] Changing Image SizeHello,
There is no such CSS code available which perfectly fit any size image in any size box if we forcefully try to fit it will stretch the image.
Actually, practically it’s a very challenging task to perfect fit images in the box
because of its not possible same size image every time, so we write CSS this way image fit in the box and overflow image part will hide.
if you want a perfect image in the box then upload a perfect box size image.Thanks
- This reply was modified 6 years, 11 months ago by Rafik.
Forum: Plugins
In reply to: [WP Slick Slider and Image Carousel] add option adaptiveHeightHello,
Thanks for your feedback.
Our technical team will check and think about it.Thanks
Forum: Plugins
In reply to: [Audio Player with Playlist Ultimate] More Than 3 Items in a RowHello,
There is no setting available to hide the thumbnail, but you can hide it by CSS
Go to your active theme >> style.css and add this CSS.apwp-jplayer-design-overide .jp-jplayer{display:none !important;}Thanks
Hello,
“slide_to_show” parameter is used to display no of products in a slider like this way
[featured_products_slider slide_to_show="2" limit="10"]
Please check your shortcode.Thanks
Forum: Plugins
In reply to: [Countdown Timer Ultimate] Timer is off one hourHello,
If you are using any cache plugin, please clear the cache and then check.
Thanks
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Filter by dateHello,
At this moment, We have not decided anything about this feature.
Thanks