kinjaldalwadi
Forum Replies Created
-
Forum: Plugins
In reply to: [Customize specific post title with color] Error adding color codeHi @almwhob ,
Hope you are doing well.!
I am happy to see that you are using my plugin. Accordingly, your query, I would like to inform that as per the coding structure, I have added css code in a specific filter function. Also I have retested again with latest wordpress theme. Found it works fine. Can you please describe more about your query so I can help you. Because it seems like conflict issue in your website. So..Looking forward to help you.
Thanks.Forum: Plugins
In reply to: [Customize specific post title with color] An error occurred in the uploadOk. Can you please upload any other plugin? I am sure you will face the same issue while you upload any other plugin. I want just confirmation so I can resolve your issue.
Looking forward for your reply.
Thank you ??Forum: Plugins
In reply to: [Customize specific post title with color] An error occurred in the uploadHi @almwhob ,
I am happy to know that you are using my plugin.
Accordingly to your comment, it seems like it’s not coz of this plugin but due to permission and max upload file size limit on server. Can you please confirm on your server?Thanks.
Hi @bacchuspunk , Sorry for the late reply. This plugin will add text “Free Shipping available from $299!” on cart page of your website without editing any code or backend. Based on your requirement, I will provide option for edit text from backend. I will update you here asap.I will be happy to help you.Thanks for your patience.
Hi @potr,
Greetings…!
Thanks for using our plugin.As mentioned, I have tried to open provided link but it redirects on Home page. https://www.fideliowoudenberg.nl/vc_gallery/najaarconcert-divertimento/
Another provided link https://www.fideliowoudenberg.nl/gallery-page/ shows 404 page.
Can you please share exact url so I can help you.
Looking forward to support you.
Thanks.
Forum: Plugins
In reply to: [Add Featured Image Custom Link] Not available in all areasHello @omnistudios,
It’s available in pro version. You can go through below link. Also it’s mentioned in plugin description.
https://vcstore.viitorcloud.com/product/featured-image-custom-link-pro/
Thanks.
Forum: Plugins
In reply to: [Add Featured Image Custom Link] Great pluginHello @thindpls,
Thank u very much for your comment. ??
Regarding your query, yes it’s possible and that feature is available in pro version. You can ask anytime for support if any issue in pro version ?? You will find pro version link in plugin description as well as go through below link:https://vcstore.viitorcloud.com/product/featured-image-custom-link-pro/
Once again thanks for using our plugin. ??
Hello @thaflo,
Thank you for using our plugin and sorry for late reply.
Can you please share your website url so I can get an idea.
Looking forward to support you.
Thanks.
Forum: Plugins
In reply to: [Face Recognition Login] Need supportHello @tymotey,
Thank you for support it works as expected. Thanks a lot.
Forum: Plugins
In reply to: [Face Recognition Login] Need supportPlease find below link:
https://tv.viitor.cloud/wp-adminForum: Plugins
In reply to: [Face Recognition Login] Need supportHi @tymotey
We are still facing same issue. I really want to use this feature in my website.
Looking forward for your support.
Thanks
Forum: Plugins
In reply to: [Face Recognition Login] Need support@tymotey
Thank you for your quick response. Yes I have set user image now. And displays Recongnizing…. since more than 10 minute.Forum: Fixing WordPress
In reply to: Show tag descriptions on postsHello @serezh4,
Yes, sorry it was type mistake in editor. Please try code as attached screenshot in below link:
https://ufile.io/gnm65s97Please let me know if still any issue.
Thanks.
Forum: Fixing WordPress
In reply to: Show tag descriptions on postsHello @serezh4,
You can write below code in your theme’s function.php file:
function show_tags_description()
{
$post_tags = get_the_tags();
$separator = ‘, ‘;
if (!empty($post_tags)) {
foreach ($post_tags as $tag) {
$output .= ‘term_id) . ‘”>’ . $tag->name . ‘‘ . ‘<p>’ . $tag->description . ‘</p>’ .$separator;
}
return trim(($output), $separator);
}
}After that, wherever you want to place tags and description, you have to add below code:
if ( is_singular() ) :
echo show_tags_description();
endif;Please let me know if any query.
Thanks.
Forum: Accessibility
In reply to: Screen Reader showing visually?Hello txwest,
I suggest you to first find from hedaer.php file. I am sure you will find from that file only.
If you didn’t get from that file and you want to remove from everywhere, you can add below css:
.col-full {
display: none;
}