Search (advanced search) | ||||
Use this Search form before posting, asking or make a new thread.
|
08-18-2014, 11:51 PM
Post: #311
|
|||
|
|||
RE:
To Remvove admin option from the top you need to fine the class use firebug and inspect that element which display this options and if find put this somewher ein css
.xxxxx or #xxxx {display:none;} and that will not shown again. n@#!r |
|||
08-19-2014, 12:26 AM
(This post was last modified: 08-19-2014 12:27 AM by anomus.)
Post: #312
|
|||
|
|||
RE:
n@$!r Thanks you, but I'd like to remove only theme options from admin bar. I would like to have add, about etc
I tried with this : add_action( 'admin_bar_menu', 'remove_wp_logo', 999 ); function remove_wp_logo( $wp_admin_bar ) { $wp_admin_bar->remove_node( 'options-framework' ); but it dosn't work |
|||
08-19-2014, 02:22 AM
Post: #313
|
|||
|
|||
RE:
(08-19-2014 12:26 AM)anomus Wrote: n@$!r Thanks you, but I'd like to remove only theme options from admin bar. I would like to have add, about etcwhat he wants is: that nobody knows he is using this theme, simple as that like a said many times before buy the theme and ask for support and as iapetos says If you use it, buy it. |
|||
08-19-2014, 01:20 PM
Post: #314
|
|||
|
|||
RE:
if you are having issues on loading, it is normal as this is a big wide range of theme, if you have a site and ready to go live, use cache plugins to make it load faster.
@anomus please read the comment of n@#!r it would work just read and do it. find the exact element which you want to remove, the bar is divided into classes, sample class is "sam-item" which is written as class="sam-item" then follow n@#!r advice |
|||
08-19-2014, 02:34 PM
Post: #315
|
|||
|
|||
RE:
(08-18-2014 03:27 PM)iapetos Wrote: It's slow due to the amount of js being used on top of WordPress. I would suggest loading only what you need for the site rather than the Full demo.Thanks for replying. I am using on a ecommerce wp install to test it out and if all goes well maybe later will just buy it to help author and i am only listed few things for sale. "Do you know the ulimit for your system?" not sure what you mean by that... As for plugins , i use only what it come with the theme,that where recommended to install, but then i put few more. (will pm you a screen) Thanks for your advice!. Regards, J.
*** BBHF # 1 Forum! ***
*Read Rules: http://bestblackhatforum.com/Announcemen...st-27-2015 *Request Section: http://bestblackhatforum.com/Forum-Request-Section *Password? http://bestblackhatforum.com/Forum-Freebies |
|||
08-19-2014, 07:48 PM
Post: #316
|
|||
|
|||
RE:
GREAT LOOKING THEME!
REP added. Thanks |
|||
08-20-2014, 03:18 AM
Post: #317
|
|||
|
|||
RE:
password ?
|
|||
08-20-2014, 03:29 AM
(This post was last modified: 08-20-2014 04:18 AM by anomus.)
Post: #318
|
|||
|
|||
RE:
omitakatori thank you, you right
I found it : #wpadminbar ul li:last-child, #wpadminbar ul li:last-child .ab-item { display: none !important; } thank you ! |
|||
08-20-2014, 11:56 AM
(This post was last modified: 08-20-2014 11:57 AM by omitakatori.)
Post: #319
|
|||
|
|||
RE:
@anomus you are welcome, hope it save you time on finding the solution :)
and UP for this great theme thanks again @iapetos! |
|||
08-21-2014, 03:58 PM
Post: #320
|
|||
|
|||
RE: | |||