Title: CodeManas's Replies - page 4 | WordPress.org

---

# CodeManas

  [  ](https://wordpress.org/support/users/codemanas/)

 *   [Profile](https://wordpress.org/support/users/codemanas/)
 *   [Topics Started](https://wordpress.org/support/users/codemanas/topics/)
 *   [Replies Created](https://wordpress.org/support/users/codemanas/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/codemanas/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/codemanas/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/codemanas/engagements/)
 *   [Favorites](https://wordpress.org/support/users/codemanas/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 46 through 60 (of 63 total)

[←](https://wordpress.org/support/users/codemanas/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/codemanas/replies/?output_format=md) [2](https://wordpress.org/support/users/codemanas/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codemanas/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/codemanas/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/codemanas/replies/page/5/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] On Google Cloud](https://wordpress.org/support/topic/on-google-cloud/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/on-google-cloud/#post-15837647)
 * Hello [@ahmetp83](https://wordpress.org/support/users/ahmetp83/) ,
 * It would be easier to get faster replies if you post your question in the community
   forum here: [https://typesense-community.slack.com/ssb/redirect](https://typesense-community.slack.com/ssb/redirect)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] Typesense features implementation](https://wordpress.org/support/topic/typesense-features-implementation/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/typesense-features-implementation/#post-15820297)
 * Yes, it works only for instant search and not for autocomplete.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] Typesense features implementation](https://wordpress.org/support/topic/typesense-features-implementation/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/typesense-features-implementation/#post-15817561)
 * Hello [@sannin](https://wordpress.org/support/users/sannin/) ,
 * Thank you for your patience. We were working on adding this feature.
 * In the premium plugin [Typesense Search for WooCommerce](https://www.codemanas.com/downloads/typesense-search-for-woocommerce/),
   we have added a new hook `cm_tsfwc_additional_search_params` which you can use
   to pass extra parameters like this:
 *     ```
       add_filter( 'cm_tsfwc_additional_search_params', 'theme_slug_alter_search_params' );
       function theme_slug_alter_search_params() {
       	return [
       		'hidden_hits' => 3662,
       		'query_by_weights' => '1,2', 
       		'query_by' => "post_content,post_title",
       		'sort_by' => 'total_sales:asc', // work only with numerical fields
       		'filter_by' => 'post_title: test',
       		'facet_by' => 'category,prices', // can not override so dont work
       		'max_facet_values' => 1, // can not override so don't work
       		'facet_query' => 'category_lvl0: Alaram',
       		'num_typos' => 2,
       		'page' => 2, // cannot override so don't work
       		'group_by' => 'category',
       		'highlightFullFields' => 'post_title,post_content,test',
       		'include_fields' => 'price,prices',
       		'pinned_hits' => '3662:2',
       	];
       }
       ```
   
 * **_Please note_** some parameters like `facet_by`, `q`, `max_facet_values`, `
   page` can not be overwritten. Others can be passed as required. Please test it
   out and provide us your feedback.
 * We will provide this feature in free version soon in the next update.
 * Please post the issues/feature request regarding the Typesense for WooCommerce,
   in the CodeManas’ forum here: [https://forum.codemanas.com/forums/c/typesense-search-for-woocommerce/](https://forum.codemanas.com/forums/c/typesense-search-for-woocommerce/)
 * Regards,
    CodeManas
    -  This reply was modified 3 years, 11 months ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
    -  This reply was modified 3 years, 11 months ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] Crawl possible for non-posts?](https://wordpress.org/support/topic/crawl-possible-for-non-posts/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/crawl-possible-for-non-posts/#post-15752447)
 * Our plugin indexes only the posts, pages and custom post types but not the data
   via API.
 * There are two approaches you can follow:
 * 1. Create custom post types via the API data and index it using our plugin which
   our plugin will work automatically on it.
    2. Use the default API provided by
   Typesense: [https://typesense.org/docs/0.23.0/api/collections.html#with-pre-defined-schema](https://typesense.org/docs/0.23.0/api/collections.html#with-pre-defined-schema)
 * Regards,
    CodeManas
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] Indexing Post Tags and Filtering By Them](https://wordpress.org/support/topic/indexing-post-tags-and-filtering-by-them/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [4 years ago](https://wordpress.org/support/topic/indexing-post-tags-and-filtering-by-them/#post-15719089)
 * Hello [@no2mad2](https://wordpress.org/support/users/no2mad2/) ,
 * The tags can be indexed by using the hooks provided by the plugin which is used
   in the gist below.
 * [https://gist.github.com/sachyya/77d35798a87e590ed43210830760e67e](https://gist.github.com/sachyya/77d35798a87e590ed43210830760e67e)
 * Drop the code in your theme’s `functions.php` and click **Delete and Re-index**
   in **Typesense settings.**
    -  This reply was modified 4 years ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search with Typesense] Woocommerce Support](https://wordpress.org/support/topic/woocommerce-support-126/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-support-126/#post-15220408)
 * Hi [@sannin](https://wordpress.org/support/users/sannin/) ,
 * The documentation needs to be update a bit thanks for bringing this to our attention.
   Can you please check your schema on typesense.
 * If you have removed comment_count as the default_sorting_field and added date_modified.
 * Then – the code to format the data should be changed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video Conferencing with Zoom] WCFM integration for Zoom , How does it work?](https://wordpress.org/support/topic/wcfm-integration-for-zoom-how-does-it-work/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wcfm-integration-for-zoom-how-does-it-work/#post-15200094)
 * [@leilanouky57](https://wordpress.org/support/users/leilanouky57/)
 * This support thread is not eligible for premium plugin support.
 * You have been replied through concerned channel so, please follow up from there.
   I will close this ticket here.
    -  This reply was modified 4 years, 5 months ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Preview E-mails for WooCommerce] Email preview for Dokan](https://wordpress.org/support/topic/email-preview-for-dokan/)
 *  Plugin Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/email-preview-for-dokan/#post-15127933)
 * Hi [@kaprikorn](https://wordpress.org/support/users/kaprikorn/) ,
 * Sorry for the late reply – but i am currently swamped with other projects, and
   integrating Dokan e-mails will take me some time to do.
    As for Zoom Integration
   for WooCommerce Bookings, it is already compatible with dokan – but it would 
   require Zoom Integration for Dokan to work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Catmandu] Change button color](https://wordpress.org/support/topic/change-button-color-29/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/change-button-color-29/#post-13806307)
 * Hello [@romicico2435](https://wordpress.org/support/users/romicico2435/) ,
 * To remove the darkness i.e. overlay, add the following CSS in **Appearance->Customize-
   >Additional CSS**
 *     ```
       .section-featured-slider .overlay-enabled article::after {
         background: none;
       }
       ```
   
 * Hope this helps.
 * Regards,
    Code Manas
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Catmandu] Demo install](https://wordpress.org/support/topic/demo-install/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/demo-install/#post-13127736)
 * You can download the demo data from here: [https://www.codemanas.com/wp-content/uploads/2020/05/catmandu-demo-data.zip](https://www.codemanas.com/wp-content/uploads/2020/05/catmandu-demo-data.zip)
 * But please note to install and activate the [One Click Demo Import](https://wordpress.org/plugins/one-click-demo-import/)
   plugin to use the demo data.
 * Regards,
    CodeManas
    -  This reply was modified 5 years, 11 months ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Busify] Menu disappeared on mobile after using elementor](https://wordpress.org/support/topic/menu-disappeared-on-mobile-after-using-elementor/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [6 years ago](https://wordpress.org/support/topic/menu-disappeared-on-mobile-after-using-elementor/#post-12888960)
 * Hello [@karlamr123](https://wordpress.org/support/users/karlamr123/) ,
 * This is due to Elementor not loading the Font Awesome CSS.
 * To fix the issue, please go to **Dashboard > Elementor > Settings > Advanced**
   and make sure **Load Font Awesome 4 Support** is set to **Yes** and click **Save
   Changes** button.
 * Regards,
    CodeManas
    -  This reply was modified 6 years ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Busify] Mobile menu doesn’t close after jump to #section](https://wordpress.org/support/topic/mobile-menu-doesnt-close-after-jump-to-section/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [6 years ago](https://wordpress.org/support/topic/mobile-menu-doesnt-close-after-jump-to-section/#post-12883631)
 * Hello [@karlamr123](https://wordpress.org/support/users/karlamr123/)
 * Sorry for the late response. Since this ticket was marked resolved we missed 
   your next issue. It would be better if you create another ticket for the issue.
 * We tried a page edited with elementor on our side but could not replicate the
   issue. Can you please specify the steps and provide us with the link to the page
   you created.
 * Regards,
    CodeManas
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Busify] Mobile menu doesn’t close after jump to #section](https://wordpress.org/support/topic/mobile-menu-doesnt-close-after-jump-to-section/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [6 years ago](https://wordpress.org/support/topic/mobile-menu-doesnt-close-after-jump-to-section/#post-12859867)
 * Hello [@karlamr123](https://wordpress.org/support/users/karlamr123/) ,
 * This has been fixed in our latest update 1.0.6. Please update to the latest version.
 * Regards,
    CodeManas
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Code Manas] Change color of posts titles](https://wordpress.org/support/topic/change-color-of-posts-titles/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/change-color-of-posts-titles/#post-12080596)
 * Hello [@whoreofbookboyfriends](https://wordpress.org/support/users/whoreofbookboyfriends/)
 * We have an inbuilt option to change the posts titles’ color in our premium version(
   [Code Manas Pro](https://www.codemanas.com/downloads/code-manas-pro/))
 * You can customize it by adding the following CSS code in
 * > Dashboard->Appearance->Customize->Advanced Options->Additional CSS
 *  :
 *     ```
       .entry-title a {
           color: #fff
       }
       ```
   
 * Regards,
    Code Manas
    -  This reply was modified 6 years, 7 months ago by [CodeManas](https://wordpress.org/support/users/codemanas/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Code Manas] After updating to 1.1.7 content in child theme is not visible anymore](https://wordpress.org/support/topic/after-updating-to-1-1-7-content-in-child-theme-is-not-visible-anymore/)
 *  Theme Author [CodeManas](https://wordpress.org/support/users/codemanas/)
 * (@codemanas)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/after-updating-to-1-1-7-content-in-child-theme-is-not-visible-anymore/#post-11505500)
 * Hello [@wimmerstefan](https://wordpress.org/support/users/wimmerstefan/) ,
 * We are glad that your issue has been resolved.
 * Yes, we will provide vital technical changes’ details in changelog henceforth.
   Thank you for the suggestion.
 * Regards,
    Code Manas

Viewing 15 replies - 46 through 60 (of 63 total)

[←](https://wordpress.org/support/users/codemanas/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/codemanas/replies/?output_format=md) [2](https://wordpress.org/support/users/codemanas/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codemanas/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/codemanas/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/codemanas/replies/page/5/?output_format=md)