fafanellu
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Themes and Templates
In reply to: [Neve] Components logicI finally found a way, just added an empty HTML component and wrote a function which prints some HTML with the hook : ‘neve_top_bar_content’. Anyway, thanks !
- This reply was modified 4 years ago by fafanellu.
Forum: Fixing WordPress
In reply to: URL Rewriting with WAMP : 404 not found??
Forum: Fixing WordPress
In reply to: URL Rewriting with WAMP : 404 not foundHummm…tried to delete the first IfModule block…and it worked !
Thanks for putting my eyes on that ??
Forum: Fixing WordPress
In reply to: URL Rewriting with WAMP : 404 not foundHere is its content :
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /cc/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /cc/index.php [L] </IfModule> # END WordPress
Forum: Themes and Templates
In reply to: [Theme : Business] Page title color CSSDone !
For instance :
header.entry-header{
background: grey;
}Forum: Fixing WordPress
In reply to: Permalinks "%postname%" only works if page is a /home subpage !I found where the problem came from. It appears that WordPress SEO by YOAST created some king of conflict with WP permalink structure. I desactivated it, reset my permalink structure properly, then I activated it and everything is doing fine !
Thanks
Forum: Themes and Templates
In reply to: [Theme: Customizr] Display problem with Roboto font familySolved !
I just modified the functions.php so that it can handle all the Roboto font styles ant weights
add_action( 'wp_enqueue_scripts', 'my_google_font' ); function my_google_font() { wp_enqueue_style( $handle = 'my-google-font', $src = 'https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,900italic,900,700italic,700,500italic', $deps = array(), $ver = null, $media = null ); }
Viewing 7 replies - 1 through 7 (of 7 total)