vee
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bootstrap Basic4] Mobile Nav not working in IOSSorry, I don’t have any Iphone here.
Please try this link http://v4-alpha.getbootstrap.com/components/navbar/#responsive-behaviors and tell me again that does the responsive navbar works in your phone?Forum: Fixing WordPress
In reply to: Menu doesn’t open on Category Archive PagesOK, just WP nav menu still not working. No conditionals for nav menu.
I use this BootstrapBasic for demo site and use it as parent theme for real site and both works fine. So, I can say that the theme itself should works fine in your case.
May I ask you to try something more?
I suggest to do it in your localhost to prevent any damage to real website.Please try to disable all the plugins fist and see is it works?
If it still not works then try to comment all the code (php comment/*...code here...*/) in your theme that contain any hooks into WordPress such asadd_filter(),add_action()and see is it works? 🙂- This reply was modified 9 years ago by vee.
Forum: Fixing WordPress
In reply to: Menu doesn’t open on Category Archive PagesYes, it is really strange. See my theme on demo website. http://product-demo.rundiz.com/wordpress/
The menu is still working on every pages.Do you have something like is_category() in the archive.php, header.php?
Please make sure that you did not conditional anything before render the menu.Forum: Reviews
In reply to: [Rundiz OAuth] The Best WordPress Top LoginThank you very much. 🙂
Forum: Fixing WordPress
In reply to: Menu doesn’t open on Category Archive PagesIt seems that the ul element for navbar not generated.
This happens on everycategory/pages but nottag/pages.I’m not sure how you write the template for category page. Did you render the menu in there and how?
Forum: Plugins
In reply to: [W3 Total Cache] Unable to fetch Page Speed results.The problem might come from….
– this plugin may not send referrer.
– this plugin use too short time for api request. maybe it needs to use more time (example 2 minutes) because web hosting network in many countries have very limited speed and data.Forum: Plugins
In reply to: [W3 Total Cache] Unable to fetch Page Speed results.I don’t have www. on real domain and yes I have it in the list and it did not work.
In fact wildcard (*) should work as www. but just wildcard or with www. are not work.Forum: Plugins
In reply to: [W3 Total Cache] Unable to fetch Page Speed results.http://mydomain.com/wp-admin/admin.php?page=w3tc_dashboard
Click on Refresh Analytics
Views network monitor it send request to http://mydomain.com/wp-admin/admin-ajax.php?action=w3tc_ajax&_wpnonce=738da45aac&w3tc_action=pagespeed_widgetdata&cache=no&pll_ajax_backend=1
The response is {“error”:”API call failed”} in JSON.Added
*.mydomain.com/*
mydomain.com/*
*.mydomain.com
mydomain.com
http://mydomain.com/*
https://mydomain.com/*
http://mydomain.com/wp-admin/*
https://mydomain.com/wp-admin/*
All of these with and without port (80 & 443) are still not working.Forum: Themes and Templates
In reply to: [Bootstrap Basic4] Nav dropdown not workingHello
Dropdown is active by on click which is correct.
Please see the example at Bootstrap website. https://v4-alpha.getbootstrap.com/components/navbar/
To make it active on hover you have to manually add some css or js to the theme. Example: http://stackoverflow.com/questions/16214326/bootstrap-dropdown-with-hoverForum: Reviews
In reply to: [Bootstrap Basic4] not so cleanHow?
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Problems with adaptive menus and collapseI was open your website with Firefox and Firebug.
The Firebug console show me this.Error: Bootstrap’s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4
And when I analyze network, I found that bootstrap.min.js was not found (404).
When I view source of the web page, I found this html.
<script type="text/javascript" src="js/vendor/bootstrap.min.js"></script>It is invalid path and cause file not found (404). The bootstrap js is already embedded in the theme, you don’t need to write this in your theme anymore.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] How to set posts_per_page in this theme?Hi,
Sorry for lag of answer.
To use
posts_per_pagein case that you modify this theme.
Add this code in functions.php/** * Override posts per page. * @param \WP_Query $query */ function bootstrapBasicMyItemsPerPage($query) { $query->set('posts_per_page', 5);// I set this to 5 for easily to count as an example, use your own number. }// bootstrapBasicMyItemsPerPage add_action('pre_get_posts', 'bootstrapBasicMyItemsPerPage');In case that you want to use child theme and you want to modify posts per page, add priority 11 in
add_action()function.
Example:add_action('pre_get_posts', 'bootstrapBasicMyItemsPerPage', 11);I hope it help you.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Broken site with WP 4.7.3 updateIt is still working perfectly. Here is example: http://product-demo.rundiz.com/wordpress/
Are you sure that is because of the theme? Maybe it’s from some plugin.Can you share the link to let me see?
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Error when I crop imagesYou might not installed GD on your server. Please read more about this at https://wordpress.org/support/topic/there-has-been-an-error-cropping-your-image-4/
This problem has nothing to do with Bootstrap Basic because this theme do nothing about cropping function.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Error when I crop imagesWhere did you crop image? If it is in admin page, Bootstrap Basic has nothing to do with it.
I tested it and it is still working fine crop tool appears and be able to crop images.If it is in customizer page, it is also working too because Bootstrap Basic don’t do anything about cropping function.
This problem might come from other plugins, please try to disable your plugin one by one and reload the edit image page to check that it works.