hattendesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can i fix this errorOK try this instead…
They cleared your code so just replace the code I sent before with this one.
Forum: Fixing WordPress
In reply to: How can i fix this errorso where are the Etichete tags coming from?
Forum: Fixing WordPress
In reply to: How can i fix this errorI THINK YOU HAVE MORE THAN ONE TAG PER POST. TRY THIS…
[ Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Forum: Fixing WordPress
In reply to: How can i fix this errorsend me the link to your page
Forum: Fixing WordPress
In reply to: How can i fix this errorTRY THIS (USING A TAG)…
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]Forum: Fixing WordPress
In reply to: Fatal Errorthe_block() is a custom function from a plugin or your current theme. If you google it, it seems to be related to a plugin called “Multiple content blocks” but I’m not sure (check to see if you have a plugin with that name, it might be disabled).
You are getting the error because there is a page on your theme trying to access a custom function which does not exist.
The fix I posted, creates a function the_block() thus eliminating the error. My fix simply outputs some invisible text whenever the theme tries to access the function.
Other than that, you’ll need to contact a developer to take a deeper look.
Best of luck.
Forum: Fixing WordPress
In reply to: How can i fix this errorI’m confused…. Do you put all videos in 1 post? Or 1 video per post?
Forum: Fixing WordPress
In reply to: How can i fix this errorHow will the related trailer(s) be determined? I guess you can just create a related post by category or a function on the theme to loop it but that requires some coding.
Forum: Fixing WordPress
In reply to: Fatal ErrorIf the function is not important to you, simply go to the theme editor under “appearance” > “editor”
Click on the “Header” template to the right and put this at the beginning.. (the absolute first line)
<?php function the_block() { echo “<!– this function is on header.php –>”; } ?>
This is not optimal but it will get rid of the error.
I’m guessing this was a wp shortcode from the themeForum: Fixing WordPress
In reply to: How can i fix this error[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Forum: Fixing WordPress
In reply to: How can i fix this errorOR…..
<span class="film"><b>Scenarist</b><br /> <?php if(count(get_field('scenaristi')) > 0): foreach(get_field('scenaristi') as $post_object): ?> <a class="arh-link" href="<?php echo get_permalink($post_object->ID); ?>"> <?php echo get_the_title($post_object->ID) ?></a><br /> <?php endforeach; endif; ?> </span>
SHOULD DO IT TOO
Forum: Fixing WordPress
In reply to: How can i fix this error<span class="film"><b>Scenarist</b><br /> <?php if(get_field('scenaristi') != "") { foreach(get_field('scenaristi') as $post_object): ?> <a class="arh-link" href="<?php echo get_permalink($post_object->ID); ?>"> <?php echo get_the_title($post_object->ID) ?></a><br /> <?php endforeach; } ?> </span>
Forum: Installing WordPress
In reply to: Transfer from .com, can't find backendif you change the dns settings today, you need to wait a few hours
1. Log in
2. click on > top right “Howdy, yourusername”
3. click on > Your profile
4. UNCHECK “Disable visual editor” option
5. click “update profile”Forum: Installing WordPress
In reply to: Transfer from .com, can't find backendhow long ago did you change the dns settings? Sometimes it takes up to 48 hours for it to fully propagate.
You also need to clear your browsers cache to avoid issues like this.