Existing products search not working at vendor dashboard

WCMp Advanced Frontend Manager

Resolved
Viewing 10 reply threads
  • Author
    Posts
    • #120029
      Anonymous
      Inactive

      Hi,

      I am trying to search for existing products via the vendor dashboard and the system is not working using name or any codes of the product. Please can you assist. Theme using “Agency Ecommerce” Version: 2.0.13

      Please help.

      Thanks

    • #120068

      Hi @dghaat.com, sorry to hear that you have faced this issue.

      It seems like there is some error in your site caused due to plugin/theme conflict, which is causing this display issue. Can you please check the console of the browser? You may find steps on how to do that in step #3 of the article on JavaScript debugging (https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis).

      Alternatively, Disable all the plugins except WooCommerce and WC Marketplace for testing purposes and check again. If the issue still exists, please switch to some default theme like Twenty Sixteen and check again.

      Let us know the result so we can help you out further.

    • #120102
      Anonymous
      Inactive

      Hi,
      Thanks, Search issue resolved by disable “Remove Footer Credit” plugin.

      Now two other problems are there.

      1. Only 10 results are showing on existing Product Catalog. I want to show all products matching with entered keyword.

      2. Like to remove “WordPress backend” option from vendor menu. Pls take look attached snap.

      Kindly give solution.

      Thank you

    • #120208

      Hi, our replies are inline :

      1. Only 10 results are showing on existing Product Catalog. I want to show all products matching with entered keyword.
      >> For this you have to do some custom code. Do you have any developer, so we can share the coding procedure.

      2. Like to remove “WordPress backend” option from vendor menu. Pls take look attached snap.

      >> You can remove this by adding code. Add this in the function.php of the current active theme :

      add_filter( 'wcmp_vendor_dashboard_header_right_panel_nav', 'filter_wcmp_vendor_dashboard_header_right_panel_nav', 10, 1 );
      function filter_wcmp_vendor_dashboard_header_right_panel_nav( $panel_nav ) {
              unset($panel_nav ['wp-admin']); //remove Backend Link
              return $panel_nav ;
      }
      Copy
    • #120212
      Anonymous
      Inactive

      Hi,

      1. Yes I am developer, please share the coding procedure.

      2. After adding given code in function.php of the current active theme, error gives as “There has been a critical error on this website”. PFA snap

    • #120293

      Hi, our replies are inline :

      1. Yes I am developer, please share the coding procedure.
      >> use wcmp_list_a_products_objects this filter and change the query as per your requirement

      2. After adding given code in function.php of the currently active theme, error gives as “There has been a critical error on this website”. PFA snap
      >> Enable the debug mode and check the error code. Share the error message so we can help you out.

    • #120566
      Anonymous
      Inactive
      This reply has been marked as private.
    • #120630

      Hi @ our replies are inline:
      1. How can I use wcmp_list_a_products_objects?? Please share complete procedure.

      >> There is no such readymade code. Hence you have to add this code using the filter,in your end.

      2. Enabled debug mode and got error as below. Snap also attached

      [26-Apr-2021 14:35:27 UTC] PHP Parse error: syntax error, unexpected end of file in /dghaat.com/wp-content/themes/agency-ecommerce/functions.php on line 35

      >> You have added some code in the function.php of your theme, this is causing this issue. Kindly double-check the code.

    • #120683
      Anonymous
      Inactive

      Hi,
      For removing “WordPress backend” option, only your given code (Referred to your reply #120208) was added in current theme’s function.php then only caused with “There has been a critical error on this website”

    • #120706

      @dghaat.com, kindly enable the debug mode and share the error message with us, so we can help you out.

    • #123898

      Hi, we haven’t heard back from you for a while. We presume this issue has been fixed.

      Please open another thread if you need any further help

Viewing 10 reply threads

The topic ‘Existing products search not working at vendor dashboard’ is closed to new replies.