Home Forums WoodMart support forum ajax quick view and search problem when using apache server ?

ajax quick view and search problem when using apache server ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #61806

    joker44
    Participant

    hello
    i have set the them wit with same plugin in namecheap server using apache server and have problem in quick view and all ajax future
    however i set the same them in inmotion hosting using ngnix with no problem in ajax product quick view or ajax product search

    #61822

    Artem Temos
    Keymaster

    Hi,

    Seems to be some issue with your server configuration since any AJAX request to the server gives 500 server error https://gyazo.com/45e392a34dc725db62b3c92228c1d7fe
    500 Internal Error says about some issue on the server and can be caused by different things. Anyway, to understand its nature you need to see your server error logs or enable PHP error display on the website. If you can’t do this, you need to contact your hosting provider for help in this question. Here is an article that may help you understand the error better http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/

    Regards

    #61987

    joker44
    Participant

    they said i have my theme not installed correctly any way i think the problem is from their server < apache

    – i installed the 2.6 updated theme and i have problem in positionning of categories menu when i switch to RTL : CHECK PHOTO !!
    http://www.m5zn.com/newuploads/2018/06/09/png//243b9c590716a75.png

    – also in mobile menu categories not expanding and it stay the same whene you click on it ?
    http://www.m5zn.com/newuploads/2018/06/09/png//c88e6cf7cd5093a.png

    please help me solve those last two problem

    #62031

    Artem Temos
    Keymaster

    Hi,

    1. Try to replace the code in the functions.php file in the child theme

    function woodmart_child_enqueue_styles() {
    	$version = woodmart_get_theme_info( 'Version' );
    	
    	if( woodmart_get_opt( 'minified_css' ) ) {
    		wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.min.css', array('bootstrap'), $version );
    	} else {
    		wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.css', array('bootstrap'), $version );
    	}
    
        wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('bootstrap'), $version );
    }

    with this one

    function woodmart_child_enqueue_styles() {
        wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );
    }

    2. Mega menu dropdowns built with HTML Blocks are supported by the main desktop menu only. You need to create a separate mobile navigation in Appearance -> Menus without HTML Blocks dropdowns.

    Regards

Viewing 4 posts - 1 through 4 (of 4 total)