FeliceAntonio
Forum Replies Created
-
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] Move to the top meta tagThanks!
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] Move to the top meta tagThanks for the answer.
I mean move up to the top of HTML source, example:<!DOCTYPE html> <html lang="en"> <head> <title>... <meta name="description">... ... all others meta...
Thanks.
- This reply was modified 2 years, 8 months ago by FeliceAntonio.
Forum: Themes and Templates
In reply to: [GeneratePress] Page/2/ indexHi there,
this is a simple example that you can add into the file functions.php of he child theme:function no_index() { if ( is_paged() ){ echo '<meta name=”robots” content=”noindex, follow”>'; } add_action('wp_head', 'no_index');
Hi there, you can use this solution
Forum: Themes and Templates
In reply to: [GeneratePress] Post Title Not VisibleDid you try: Admin Panel > Appearance > Colors?
Forum: Themes and Templates
In reply to: [GeneratePress] Site Speed SlowHi there,
I’m just a user, but I don’t think the slow problem is due to the theme.
You have several plugins, perhaps if you change theme the result is the same.Forum: Plugins
In reply to: [Yoast SEO] Change breadcrumbs but not permalinkMy mistake. Sorry. I get it.
Forum: Fixing WordPress
In reply to: Where modify database after changed images folderWell, I found this code here
add_filter( 'pre_option_upload_path', function( $upload_path ) { return '/path/to/static'; }); add_filter( 'pre_option_upload_url_path', function( $upload_url_path ) { return 'https://static.example.org'; });
and it seems work well!
Regards.Forum: Fixing WordPress
In reply to: Decrypt CSS code stored in databaseGood to know.
For various problems I have installed completely WordPress in a subdomain, I exported the most important tables which fortunately worked correctly, and copied all the files on the primary domain.
In the previous database I had errors.
It was easier this way than looking for errors, and correcting them, without knowing where they were.
Regards!- This reply was modified 3 years, 5 months ago by FeliceAntonio.
Forum: Fixing WordPress
In reply to: Decrypt CSS code stored in databaseThank you very much -:)
Forum: Plugins
In reply to: [Matomo Analytics - Ethical Stats. Powerful Insights.] Plugin doesn’t installWell, not all bad comes to hurt!
I installed in a separate folder Matomo on-premise with its database.
Perhaps, is better this way.
Great software, I have to learn to use it a proper way, but I’m glad -:)
Regards!Forum: Themes and Templates
In reply to: [GeneratePress] Change menu for a specific category@ejcabquina I thought the solution is more difficult, and for this, I didn’t think about two menus.
I intended to add HTML code insidereturn '';
offunction tu_move_navigation
and was more complex I think.
With your code and English Menu works very well!!!
Always thanks you and all GP Team for first-level support -:)Forum: Themes and Templates
In reply to: [GeneratePress] Change menu for a specific categoryIt works well to remove the Italian menu from the English section.
But if I try to add the English menu insidereturn '';
doesn’t appear.
I add HTML code:<nav id="mobile-menu-control-wrapper" class="main-navigation mobile-menu-control-wrapper"> <div class="menu-bar-items"></div> etc.
- This reply was modified 3 years, 5 months ago by FeliceAntonio. Reason: corrige
- This reply was modified 3 years, 5 months ago by FeliceAntonio.
Forum: Themes and Templates
In reply to: [GeneratePress] Change menu for a specific categoryForum: Themes and Templates
In reply to: [GeneratePress] Remove header with PHP functionThanks a lot, it works like a charm!!!
I didn’t think, and I didn’t know, aboutis_page ()
could not work well withafter_theme_setup
.
Always thanks for your time and the great support -:)