Best Blackhat Forum

Full Version: [GET][UPDATED] The7 v4.4.4 - Responsive Multi-Purpose WordPress Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
isitmeor it dosn't work, I've already checked that or i dont know with php file should I use.

for example testimontals
content-testimonials.php, template-testimonials.php,metaboxes-testimonials.php dosn't work :/

add_action( 'admin_menu', 'my_remove_menu_pages' );

function my_remove_menu_pages() {
remove_menu_page('metaboxes-testimonials.php');
remove_menu_page('template-testimonials.php');
remove_menu_page('content-testimonials.php');
}
?>

Help me please
thanks, that was my oldest way of updating file through ftp, unfortunately my hosting doesnt offer zip and unzip function on its cpanel

so I have to transfer the entire folder and files in it through ftp one by one lol. Thanks guys for the input. Thanks again for this theme

keep it cumming :)
@[b]anomus[/b]


f you need to remove from the7 theme the menu items portfolio, testimonial, team, partners, clients etc benefits photo albums slideshow just put this code to function.php of the theme:

add_action( ‘admin_menu’, ‘my_remove_menu_pages’ );
function my_remove_menu_pages() {
remove_menu_page(‘edit.php?post_type=dt_testimonials’);
remove_menu_page(‘edit.php?post_type=dt_portfolio’);
remove_menu_page(‘edit.php?post_type=dt_logos’);
remove_menu_page(‘edit.php?post_type=dt_team’);
remove_menu_page(‘edit.php?post_type=dt_benefits’);
remove_menu_page(‘edit.php?post_type=dt_gallery’);
remove_menu_page(‘edit.php?post_type=dt_slideshow’);
}
isitmeor dosn't work Parse error: syntax error, unexpected '=' in C:\xampp\htdocs\w6\wp-content\themes\xxx\functions.php on line 9

I puit this code into function.php of the theme at the begining

<?php


add_action( ‘admin_menu’, ‘my_remove_menu_pages’ );

function my_remove_menu_pages() {
remove_menu_page(‘edit.php?post_type=dt_testimonials’);
remove_menu_page(‘edit.php?post_type=dt_portfolio’);
remove_menu_page(‘edit.php?post_type=dt_logos’);
remove_menu_page(‘edit.php?post_type=dt_team’);
remove_menu_page(‘edit.php?post_type=dt_benefits’);
remove_menu_page(‘edit.php?post_type=dt_gallery’);
remove_menu_page(‘edit.php?post_type=dt_slideshow’);
}


?>
(08-17-2014 02:03 AM)anomus Wrote: [ -> ]isitmeor dosn't work Parse error: syntax error, unexpected '=' in C:\xampp\htdocs\w6\wp-content\themes\xxx\functions.php on line 9

I puit this code into function.php of the theme at the begining



add_action( ‘admin_menu’, ‘my_remove_menu_pages’ );

function my_remove_menu_pages() {
remove_menu_page(‘edit.php?post_type=dt_testimonials’);
remove_menu_page(‘edit.php?post_type=dt_portfolio’);
remove_menu_page(‘edit.php?post_type=dt_logos’);
remove_menu_page(‘edit.php?post_type=dt_team’);
remove_menu_page(‘edit.php?post_type=dt_benefits’);
remove_menu_page(‘edit.php?post_type=dt_gallery’);
remove_menu_page(‘edit.php?post_type=dt_slideshow’);
}


?>


add_action( 'admin_menu', 'my_remove_menu_pages', 999 );

function my_remove_menu_pages() {
remove_menu_page('edit.php?post_type=dt_benefits' );
remove_menu_page('edit.php?post_type=dt_testimonials' );
};


works for me
problem is the notation ' and not ´
True, now it works

add_action( 'admin_menu', 'my_remove_menu_pages', 999 );

function my_remove_menu_pages() {
remove_menu_page('edit.php?post_type=dt_benefits' );
remove_menu_page('edit.php?post_type=dt_testimonials' );
};

How can I remove theme options ?
(08-17-2014 02:48 AM)anomus Wrote: [ -> ]True, now it works

add_action( 'admin_menu', 'my_remove_menu_pages', 999 );

function my_remove_menu_pages() {
remove_menu_page('edit.php?post_type=dt_benefits' );
remove_menu_page('edit.php?post_type=dt_testimonials' );
};
now show me / us the result/site :)
I have it on localhost, could you tell me how can I remove theme options ?
(08-17-2014 03:24 AM)anomus Wrote: [ -> ]I have it on localhost, could you tell me how can I remove theme options ?
you want me to design the theme aswell?
:) no thank you just tell me how remove theme options that's it

Thank you in advance for your help ! U are the best !
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
Reference URL's