vee
Forum Replies Created
-
Thank you. Without WP Mail SMTP plugin WordPress still unable to send the email that’s why I have to install this plugin. ??
Forum: Themes and Templates
In reply to: [Bootstrap Basic4] Child ThemeTry
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 11 );
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Bootstrap Basic Theme problems with httpsIt might come from plugins, image or resource in the post that directly refer to https://
If I don’t see the link I cannot know where it come from.Forum: Themes and Templates
In reply to: [Bootstrap Basic4] Child ThemeYou can create child theme by no need to include anything in functions.php. You can change how functions.php work into your own style for example:
add_action('wp_enqueue_scripts', 'myBs4EnqueueScripts'); if (!function_exists('myBs4EnqueueScripts')) { function myBs4EnqueueScripts() { wp_enqueue_style('my-additional-css', get_stylesheet_directory_uri() . '/css/my-additional-css.css'); } }
Learn more from https://codex.www.ads-software.com/Child_Themes
- This reply was modified 7 years ago by vee.
Forum: Reviews
In reply to: [Bootstrap Basic4] Thanks for the great theme!Thank you ??
Forum: Themes and Templates
In reply to: [Bootstrap Basic] MultisiteYes, it is.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Bootstrap Basic Theme problems with httpsIt is possible to use this theme with https. I did not refer any files to http.
You can see it in the source code repository. https://github.com/Rundiz/bootstrap-basicThe header.php file has nothing in
<head>
tag. The footer.php also has nothing to js from here. The functions.php file use enqueue function for all js and css so it will be generated as link and script tag by the WordPress. Nothing refer to http.If you need more help please attach your link.
Forum: Reviews
In reply to: [Bootstrap Basic4] Great themeThis theme has been updated to 0.1.8 and using Bootstrap 4 beta. Many classes were changed and removed or added so please verify theme in your local pc before update in the real web site.
Thank youForum: Reviews
In reply to: [Bootstrap Basic4] Great themeThank you. Your voice can help me improve the theme.
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?If you did not find you can skip it.
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?I’m already told you everything and help you as much as I can. It is not too hard to open these files and replace the function as I said. If first is not work then try the second.
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?I’m not sure.
Try to replace justbootstrapBasicPagination()
function. No other line just that function, no else no more.I’m not sure what to replace maybe
wp_pagenavi()
.
As I see in https://www.ads-software.com/plugins/wp-pagenavi/ page.
Let’s start replace withwp_pagenavi()
if that is not work or not what you want then trywp_pagenavi( array( 'type' => 'multipart' ) );
function.Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?I think you means pagination in the page that listing many posts, not pagination in the content or single post.
Then there are 4 template files that use
bootstrapBasicPagination()
function.
1. archive.php
2. index.php
3. search.php
4. single.phpIf you want to modify BootstrapBasic and make it your own theme (parent theme) then open these files, find
bootstrapBasicPagination()
function and replace with the code of pagenavi plugin.If you want to use child theme to override this theme then copy 4 of these files and do the same thing (replace
bootstrapBasicPagination()
function with the code of paginavi plugin).Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?Hello @jsa
Can you tell me where the problem had occur?
Is it paginate in the list posts (index, category, tag page) or inside content?
And hello the plugin author.
I found that the theme comes with WordPress use
the_posts_pagination()
function in their list posts page such as index.php file.Inside this function there is not much hooks or filters or even array attributes to let the theme display pagination in Bootstrap 3 style. So, I have to create new pagination function for use in list posts.
Do you have any special hooks to check that I should use your pagination function or my.
Example:if (add_filter('wp_pagenavi_use_plugin_pagination', false) === true) { // use pagenavi plguin } else { // use theme's pagination function }
Thank you.
Forum: Fixing WordPress
In reply to: Menu doesn’t open on Category Archive PagesGood to see all things fixed. ??