vee
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-OAuth] undefined index WPOA errorWhoops! comes with more errors after logged in.
Notice: A session had already been started – ignoring session_start() in /xxx/public_html/wp-content/plugins/wp-oauth/login-google.php on line 4
Notice: Undefined index: redirect_to in /xxx/public_html/wp-content/plugins/wp-oauth/login-google.php on line 22
Notice: Undefined index: HTTP_REFERER in /xxx/public_html/wp-content/plugins/wp-oauth/login-google.php on line 25
Notice: Undefined index: access_token in /xxx/public_html/wp-content/plugins/wp-oauth/login-google.php on line 131
Notice: Undefined index: expires_in in /xxx/public_html/wp-content/plugins/wp-oauth/login-google.php on line 132
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] How to "clean" uninstall or deactivate?No, I didn’t plan to remove it completely, just to remove and check something when problem found.
Forum: Plugins
In reply to: [WP-OAuth] Error when not authenticatedI have this problem too when go to login page.
Please not close this but fix it using
if
andisset
. It is better not ignore these notice.I find more info. for you.
For main column size please refer from this file inc/template-functions.php
For left sidebar, please refer from this file sidebar-left.php
For right sidebar, please refer from this file sidebar-right.phpMain column size must calculated from these sidebar. For example: I change right sidebar column size to 2 and left sidebar column size is 3 then main column is…
show (left) & (right) = 7
show (left only) = 9
show (right only) = 10
show (no sidebar) = 12Forum: Themes and Templates
In reply to: [Bootstrap Basic] Admin bar and js conflictsAdmin bar is working fine as the demo link here https://prd-demo.okvee.net/wordpress/
username: demo
password: demoSecondly. I think the javascript in this theme have nothing special. Please see https://github.com/OkveeNet/bootstrap-basic/blob/master/functions.php at line 129.
It uses modernizr, respond, html5 shiv, jquery, bootstrap js, main script (which is blank file). That’s all.From your both problem it appears that it might be conflict with some plugin’s javascript.
Please check by following step.
* disable all other plugins and check that admin bar and your other js works?
* switch from my theme to wp default theme (twenty fifteen) and check that admin bar and your other js works?
* re-enable plugins and follow step above again.Please tell me again if something happens. ??
I’m not sure about child theme, you may need to modify the parent theme as yours.
Forum: Reviews
In reply to: [Bootstrap Basic] A great place to start fromThank you for your review.
Forum: Reviews
In reply to: [Bootstrap Basic] Best Theme ever@heger-software
Thank you for your review.I’m glad that you found the problem and fixes.
https://github.com/OkveeNet/bootstrap-basic
I’m not sure does this work with iframe. I didn’t test it.
Cloak video element (video element or embeded video) with
<div class="flexvideo">...your video...</div>
However congrats to you that you found the fix.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Navigation Bar Clicks and Non-showing SubMenusHello @yush
1) No, You cannot make it just hover and submenu appears by default. Bootstrap v.3 menu must click to active submenu but you can create your css to change this. Please take a look at this web page. How to make twitter bootstrap menu dropdown on hover rather than click (find Bootstrap 3 on the page)
2)Yes, you are able to see all submenu on click. Please see this screenshot of admin page. And this is front-end page. Please make sure that your other css is not the cause of this problem.
3)As i replied on 1), the Bootstrap v.3 itself did not support hover and display submenu and you have to make sure that the menu you created will be match Bootstrap’s navbar element style. Please see https://getbootstrap.com/components/#navbar Or look at my demo website.
Forum: Reviews
In reply to: [Bootstrap Basic] Works wellThank you @paulmyatt
Forum: Themes and Templates
In reply to: [Bootstrap Basic] $main_column_sizeHello @arudd
Please make sure that you set the column size of sidebar at:
sidebar-left.php
sidebar-right.phpAnd please make sure that the conditions and column size was calculated correctly at inc/template-functions.php
Refer from original code:
if (!function_exists('bootstrapBasicGetMainColumnSize')) { /** * Determine main column size from actived sidebar * * For theme designer: * By using this column size, Bootstrap grid size is 12. * You may change grid size of sidebar column to number you want; example sidebar-left.php grid 2, sidebar-right.php grid 3. * Get Bootstrap grid size minus total sidebar grid size as conditions below this line. * Both sidebar active. (12-2-3) = 7. Main column size is 7. * Only left sidebar active. (12-2) = 10. Main column size is 10. * Only right sidebar active. (12-3) = 9. Main column size is 9. * No sidebar active. Main column is 12. * Now, you write the condition above into the function below and return column size value. * * @return integer return column size. */ function bootstrapBasicGetMainColumnSize() { if (is_active_sidebar('sidebar-left') && is_active_sidebar('sidebar-right')) { // if both sidebar actived. $main_column_size = 6; } elseif ( (is_active_sidebar('sidebar-left') && !is_active_sidebar('sidebar-right')) || (is_active_sidebar('sidebar-right') && !is_active_sidebar('sidebar-left')) ) { // if only one sidebar actived. $main_column_size = 9; } else { // if no sidebar actived. $main_column_size = 12; } return $main_column_size; }// bootstrapBasicGetMainColumnSize }
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Main column sizeyou can change side bar left and right size at
sidebar-left.php
sidebar-right.phpForum: Themes and Templates
In reply to: [Bootstrap Basic] Flyout menu of right sidebar and left sidebarBy default, Bootstrap v3 has no fly-out menu or push menu like that.
You have to manually modify the code in this theme.
You are freely to make it your own theme, so you can make any change you like.