OshikErnst
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Google web fonts not showing (Chrome)OK
Your code works for me. locally.
So i guess it’s something else. it stops before the ? mark in your case.
Forum: Fixing WordPress
In reply to: Google web fonts not showing (Chrome)try adding false,
like this:
wp_enqueue_style( ‘source-sans’, ‘https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900,700,600,400italic,300italic,300&subset=latin,latin-ext’, false );Forum: Fixing WordPress
In reply to: Can't get rid of warnings in my header@innuvo sorry about that, didn’t know.
Forum: Fixing WordPress
In reply to: Google web fonts not showing (Chrome)I would try 2 things:
1) wp_enqueue_scripts instead of init in add_action
2) change && in php if to ||Forum: Fixing WordPress
In reply to: code every third postYou have to add:
$counter = 1;
before line 20 (<?php while(have_posts()) : the_post(); ?>)and add this:
if( $counter === 3 ) { ?>
<div class=”third-div-in-loop”>content</div>
<?php }
$counter++;before line 55 (<?php endwhile; ?>)
Forum: Fixing WordPress
In reply to: Can't get rid of warnings in my headerLooks like a problem with your theme.
try adding the function i sent you in the functions.php file.contact me if you need any coding help
[Email redacted]
Forum: Fixing WordPress
In reply to: My site has disappeared & the screen is white so how do I log in?You can try rename plugins / themes folders VIA ftp to see if it helps.
Forum: Fixing WordPress
In reply to: Can't get rid of warnings in my headerI don’t see them so I guess only admin sees it.
Anyway to fix this you need some PHP coding.
You need to get rid of these illegal characters.
https://www.php.net/manual/en/function.session-start.php#82957
Forum: Fixing WordPress
In reply to: code every third postsend a link and i will tell you
usually its in the content section
Forum: Fixing WordPress
In reply to: code every third postIt depends where you want it.
homepage – usually index.php or home.php (depends which theme you are using)
Oshik
Forum: Fixing WordPress
In reply to: Edit Error PageI can see the warnings and errors comes from:
simple-membership\views\account_delete_warning.phptry edit this file.
Forum: Everything else WordPress
In reply to: Database QuestionsI really don’t think WordPress duplicated the DB, more likely it’s the hosting company. Looks like someone restored a backup or something like that.
Forum: Networking WordPress
In reply to: Do I need a multi-site?Hi,
You have various options:
1) a new domainbuy a new domain, in your hostgator cpanel create new addon domain and point the nameservers to your hostgator server (DNS).
That’s it. you have a new website (blog) on the same account2) sub domain
In your cpanel create a new subdomain and install your wordpress there (can have some SEO issues, so i prefer the first option)Forum: Fixing WordPress
In reply to: plz help me outgo to table wp_options
and change the value of
siteurl for your urlForum: Themes and Templates
In reply to: Want to get two themes togetherwhat are the exact functions from Suffusion you need?