Matthijs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show admin bar only to admins – Not workingHi,
Add this in your functions.php in your active theme.
function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } } add_action('after_setup_theme', 'remove_admin_bar');
Forum: Themes and Templates
In reply to: [Barletta] Main menu button not working with subsHi,
Look in your active theme file in the header.php
Forum: Themes and Templates
In reply to: Help me with image allignmentHi,
If you want to center the images, you have to change the css
add the following lines to your css:
p { text-align: center; }
- This reply was modified 8 years, 1 month ago by Matthijs.
Forum: Fixing WordPress
In reply to: googlebotLinks & meta data hackedHi,
I think it is in the Yoast SEO plugin.
Forum: Fixing WordPress
In reply to: Private posts, widgetsHi,
If you set a post to Private, It means it is not published on the front-end.
Maybe this plugin can help you out ??
Hi @hamadesign,
Nice to hear it worked! Have a nice day ??
Hi @hamadesign,
A way to remove it is to change your CSS.
Add to the class.home-slider-pointer
this:display: none;
.It should be work ??
Forum: Themes and Templates
In reply to: [edivos] help with navigationHi,
In google chrome I just see the horizontal lines on the homepage in white like all other pages.
Forum: Themes and Templates
In reply to: [edivos] help with navigationHi,
I think you have to update your permalinks (Settings -> Permalinks). If that doesn’t work, take a look at the menus (Appearance -> Menus) in the admin panel ??
Hi,
If you want to delete the button, i think you have to change the front-page.php in your active theme directory. Maybe you can send a url of the website so i can help a bit better ??
Forum: Themes and Templates
In reply to: Help Fix Bad ValueHi,
Take a look at this. You can’t put a url in a
rel=""
attribute.Forum: Fixing WordPress
In reply to: backend warnings don’t show anymoreHi,
You can try to disable all your plugins to see if it is in there ??
Forum: Themes and Templates
In reply to: [Oblique] Center Footer TextForum: Fixing WordPress
In reply to: scalable fontYou can change your css to make the font smaller when the screen is smaller then 992px.
Example:
@media (max-width: 992px) { h1 { font-size: 12px; } }