Setup

New

Website

Standard plugins when creating a new website:

• Elementor
• Essential Addons for Elementor (duplicate page)
• Royal Elementor Addons (scroll top page, search, template, navigation menu, sticky header)
• LiteSpeed Cache* (*can cause problems by loading to fast, so website looks broken in real)
   Assets Cleanup is an alternative
• WPForms Lite
• WP Mails SMTP
• Hostinger Tools
• Used theme: Hello Elementor

• Delete in Hello elementor theme the standard Copywright:
   Edit Themes - Hello Elementor: dynamic-footer.php (template-parts/dynamic-footer.php)
   Delete last 'DIV' completely

• Defining color of links – Customize theme – Additional CSS:
   a { color: #66FCF1; /* Default link color */ text-decoration: none; /* Remove underline */ }   a:hover { color: #45a6a7; /* Change color on hover (you can adjust this color as needed) */ }
• Used theme: GeneratePress

• Modify in GeneratePress theme the standard Copywright:
   Edit Themes - GeneratePress:Theme-files (inc/structure/footer.php)
   Change:
"function generate_add_footer_info() { $copyright = sprintf( '© %1$s %2$s • %4$s %5$s', date( 'Y' ), // phpcs:ignore get_bloginfo( 'name' ), esc_url( 'https://tsidigitalsolution.com' ), _x( 'Built by', 'TSI Digital Solution', 'TSI Digital Solution' ), __( 'TSI Digital Solution', 'TSI Digital Solution' ), 'microdata' === generate_get_schema_type() ? ' itemprop="url"' : '' );echo apply_filters( 'generate_copyright', $copyright ); // phpcs:ignore } }"

• Defining color of links – Customize theme – Additional CSS:
   a { color: #66FCF1; /* Default link color */ text-decoration: none; /* Remove underline */ }   a:hover { color: #45a6a7; /* Change color on hover (you can adjust this color as needed) */ }