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 ?
- This topic has 3 replies, 2 voices, and was last updated 6 years, 6 months ago by Artem Temos.
-
AuthorPosts
-
June 7, 2018 at 9:28 pm #61806
joker44Participanthello
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 searchJune 8, 2018 at 6:18 am #61822
Artem TemosKeymasterHi,
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
June 9, 2018 at 1:45 am #61987
joker44Participantthey 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.pngplease help me solve those last two problem
June 9, 2018 at 11:26 am #62031
Artem TemosKeymasterHi,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register