Ali Akbar Reyad
Forum Replies Created
-
Hi,
Which theme are you using? If you use our provided theme, you can change it using Elementor. Open the page in Elementor edit mode and click on the element to change link.Thank you
Hi,
Thanks for identifying the issue specifically, will fix the conflict with store plugin.Thank you
Hi,
Not added yet, will get in next update.Thank you
Hi,
Sorry, did not understand clearly. Every time create new post when edit? or publish post after edit?Thank you
Hi,
Yes, there have filter hook to change the URL. You can check the function located in plugins\classified-listing\app\Models\Listing.php file.Use the filter hook in child theme functions.php file in following way –
add_filter( 'rtcl_listing_get_author_url', function(){
return 'your url';
});Thank you
Hi,
Right now, there support icon. Okay, will add hook to change it.Thank you
Hi,
Add following code in child theme functions.php file to remove all location related fields –remove_action( 'rtcl_edit_account_form', [ \Rtcl\Controllers\Hooks\TemplateHooks::class, 'edit_account_form_location_field' ], 50 );
If you want to remove specific fields from location then need some customization –
- Remove all location fields using mentioned code.
- Then add specific field which you need using action hook ‘rtcl_edit_account_form’
Thank you
Hi,
Yes, you can rewrite CSS using child theme or write CSS here Appearance -> Customize -> [Additional CSS]Thank you
Okay, understand. Will check it.
Thank you
Hi,
We added close button for multiple selection popup, item selection is okay rather than checkbox. We checked it and see sorting works here. Which option not working for you? only custom order or all available option?Thank you
Hi,
Added close button in version 4.0.5Thank you
Hi,
Added the format in version 4.0.5, you can check it now.Thank you
Hi,
Updated the library, now you can check it.Thank you
Hi,
Are you talking about multi selection option? When enable multi selection for category then will not work parent child dependency in selection panel.Thank you
Hi,
Yes, available in that file but social profile added using hook. Add following code in child theme functions.php file to remove social profile from account details –remove_action( 'rtcl_edit_account_form', [ \Rtcl\Controllers\Hooks\TemplateHooks::class, 'edit_account_form_social_profile_field' ], 70 );
Thank you