CodeManas
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Popup Block] Reset the popupDisplayed on content changeHello @peeter1682 ,
Glad that the plugin has been useful to you and you like the plugin.
Regarding your query, you can remove the
popupDisplayedvalue from the cookie by setting expiry to the past date inside the event listener of your content change like this:document.cookie = "popupDisplayed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";The code has to be wrapped inside the even of your content change event listener for it to work.
Regards,
CodeManasForum: Plugins
In reply to: [Search with Typesense] need to install on a different test siteHello @blinkeedotcom ,
We provide support for our premium sold product only on our official forum. Please direct your request there for assistance. https://forum.codemanas.com/
Regards,
Code ManasForum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom Error: Invalid access tokenHi @sutarasmita
Please go through – https://zoomdocs.codemanas.com/setup/#required-scopesAnd setup all the required scopes needed.
Forum: Plugins
In reply to: [Search with Typesense] How to contribute?Hi @denishpatel
Please let us know here what bugs you found and we can figure them out.Forum: Plugins
In reply to: [Search with Typesense] Two things – loading css, and changing cssHello @maven1129
Thank you for using our plugin!
To override the style themes and CSS, you can use the
wp_dequeue_stylefunction to remove the default stylesheet. The handle name for the stylesheet iscm-typesense-frontend-style. Once it has been dequeued, you can load your custom stylesheet and style it according to your needs.As for the last part, could you please provide more details or clarify further?
Forum: Plugins
In reply to: [Simple Popup Block] Close popup via a linkHello @slingshotdesign ,
Yes, you can close the popup using a link. The plugin offers several popup triggers, including an option to close it on click. You can refer to the detailed documentation and video tutorial for guidance.
Feel free to reach out if you need any further assistance.
Regards,
Code ManasForum: Plugins
In reply to: [Search with Typesense] Refinment > AND instead of ORHello @jmslbam ,
Thank you for using our plugin and for the query above.
To make the facet search with
ANDinstead ofOR, you would have to change theoperatorconfig like this:add_filter( 'cm_typesense_search_facet_settings', 'your_slug_custom_facet_settings' );
function your_slug_custom_facet_settings( $settings ) {
$settings['operator'] = 'and';
return $settings;
}Regards,
Code Manas
Forum: Plugins
In reply to: [Simple Popup Block] Video still playing after closing the popupHello @maxstub ,
Thank you for using the plugin and for your patience while waiting for a response.
We’ve released an update to the plugin (
version 1.2.3), which should resolve the issue you mentioned. With this update, videos and embeds inside the popup will automatically stop when the popup is closed.Regards,
Code Manas
Hello @isaacoh ,
Thank you for using our theme!
In response to your question about assigning a single post template with a sidebar, the theme doesn’t include a default Single with Sidebar template. However, you can edit the Single Posts template in the site editor to add the desired sidebar. This will ensure that all posts display with the sidebar.
Please let us know if this resolves your issue. If not, we’re here to help!
Regards,
Code ManasForum: Plugins
In reply to: [Simple Popup Block] How to prevent body from scrolling up when popup opensHello @maxstub ,
Thank you for your patience. We’re sorry for the delayed response; we missed the notification.
Regarding your inquiry, we have updated our plugin to version 1.2.2. This update includes new classes,
simple-popup--closedandsimple-popup--opened, which reflect the open/close status of the popup.Once you update to version 1.2.2, please add the following CSS to prevent the body from scrolling when the popup is open:
body.simple-popup--opened {
overflow: hidden;
}If you have any further questions, feel free to reach out!
Regards,
Code Manas
Forum: Plugins
In reply to: [Simple Popup Block] Feature Request: Popup on URLHello @gl_spice ,
The plugin does support popup on clicking the anchor. We have a detailed documentation for that here: https://docs.cmblocks.com/simple-popup-block/trigger-on-click/
The second part is a bit confusing. Can you please clarify with an example if possible?
Regards,
Code ManasForum: Plugins
In reply to: [Search with Typesense] Missing category and tag strings for translationHi @j11k00
If you are referring to the actual Category / Tags text – then this is what the facet headerhttps://www.awesomescreenshot.com/image/50190405?key=4b42e46f8847e95f195c03fffb94256f
Then the text for this is the same that is used as the facet label.
So this is actually dynamic – this is not available to translate via a pot file.Hi Libellule,
There aren’t any known issues at the moment with gravity forms.
Can you please provide details of the issue and how to replicate.
We can keep this in mind for future updates.Forum: Plugins
In reply to: [Video Conferencing with Zoom] I want to hide Join Meeting via Zoom App@narendrask please try using the following code
add_filter( 'vczoom_join_meeting_via_app_disable', '__return_true' );Either in your child theme or a custom plugin.
Forum: Plugins
In reply to: [Search with Typesense] only support port-based accessHi @yawargenii
Can you please expand on what you mean here by route-based use of typesense ?
I’m not sure i follow exactly what you mean here