Huna
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updating from Version 4.6.11?Thank you so much! Luckily I will be able to do staging!
THANK YOU!!!
Forum: Plugins
In reply to: Can’t find where to modify header imagesTurns out some plugins were out of date and not working with the latest version of WordPress!
Forum: Fixing WordPress
In reply to: Sidebar Widgets not Showing on page with Same TemplateThank you for the tip.
That worked! I added in the custom field show_sidebar_widgets = Yes for the About page, and the widgets showed up! Thank you!!! The strange thing is that that field is not defined for the Webinars page, where the widgets have been showing without fail. Weird.
Forum: Fixing WordPress
In reply to: Sidebar Widgets not Showing on page with Same TemplateSure, it’s:
<?php get_header(); ?>
<?php the_post(); ?>
<div class=”content full”>
<div class=”wrap group”><div class=”post” id=”post-<?php the_ID(); ?>” style=”float: left; width: 60%;”>
<h1><?php the_title(); ?></h1>
<div class=”entry”>
<?php the_content(); ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>And the .php of the sidebar itself is:
<div class=”sidebar”>
<?php if(get_field(“show_donut_chart”) == “Yes”): ?>
<?php the_field(“chart_code”, “option”); ?>
<script type=”text/javascript”>
var _class;$(“.chart a”).hover(function(){
$(“.chart img”).hide();_class = $(this).attr(“class”);
$(“p.” + _class).show();
}, function(){
$(“.chart p”).hide();
$(“.chart img”).show();
});
</script>
<?php endif; ?><?php if (function_exists(‘dynamic_sidebar’) && get_field(“show_sidebar_widgets”) == “Yes”): ?>
<?php dynamic_sidebar(‘Sidebar Widgets’); ?>
<?php endif; ?><?php if(!is_page_template(‘archive.php’) && get_field(“show_latest_news”) == “Yes”): ?>
<div class=”latest-news”>
<!– <h3>Latest News & Information</h3>-
<?php $args = array(
-
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
‘post_type’ => ‘post’,
‘post_count’ => 3,
);
$featured_posts = get_posts( $args );foreach($featured_posts as $i => $post):
setup_postdata($post); ?><?php endforeach; wp_reset_query(); ?>
–>
<h5>“>Read More News | “>Subscribe to News Feed</h5>
</div>
<?php endif; ?>
</div>Forum: Fixing WordPress
In reply to: How to fix Fatal error: Cannot redeclare add_term_meta()Thank you for the reply, @shemzone. I tried your text and it didn’t work, and I got a message that some of the characters were incompatible with BIG5.
I never had the Hide For Group Roles plugin in the first place, though, so I’m guessing my problem lies somewhere else.
Forum: Plugins
In reply to: [Taxonomy Metadata] Fatal error: Cannot redeclare add_term_meta() Issue@waterfrontsea Where did you find an updated taxonomy file, and where exactly is the one you replaced the updated one with? Thanks!
Forum: Fixing WordPress
In reply to: How to fix Fatal error: Cannot redeclare add_term_meta()Well, I learned not to delete taxonomy.php. I restored it, installed the Hide for Groups (roles) plugin, and tried shemzone’s solution from the linked thread, but no dice.
Hi @eiteews, it’s located at /www/wp-content/plugins/hide-for-group-roles
Rename the file “index.php” or modify the functions (around line 938)
from….Forum: Fixing WordPress
In reply to: How to fix Fatal error: Cannot redeclare add_term_meta()I deleted the taxonomy-metadata folder, and now I can get back into Admin, but if I try to install the Taxonomy plugin again, the error comes back. Should I try deleting taxonomy.php? I did try pasting in two other versions of the file (one by one) but both of those threw errors (with the plugin not reinstalled).
Forum: Fixing WordPress
In reply to: How to fix Fatal error: Cannot redeclare add_term_meta()Hi everyone, I have this problem too, but I do not have a wp-content/plugins/hide-for-group-roles folder. Also, I can’t login to WP admin because I get the error. Should I delete the taxonomy-metadata folder under plugins?
Forum: Fixing WordPress
In reply to: Flatsome Home page messed up on mobile?Thanks! Now I feel better, and good to know about PageSpeed!
Forum: Fixing WordPress
In reply to: Flatsome Home page messed up on mobile?Haha! Well, a large percentage of our customers are on mobile (60-70%), so I do want to make sure the site loads fast. The page speed scores are mediocre now, so there is probably will be more fiddling. I wonder would would happen if I deleted and reinstalled W3 Total Cache…. But for now, I’m very happy the site looks good, and I don’t really want to mess with it for a while!
Thanks again. So appreciated!
Forum: Fixing WordPress
In reply to: Flatsome Home page messed up on mobile?That worked!!!!! I reenabled W3 Total Cache and disabled all the minifying! That is so interesting. I wish I could better understand the why… but for now, thank goodness the site is working properly! Thank you so much for your help, Jeff!!!
Forum: Fixing WordPress
In reply to: Flatsome Home page messed up on mobile?Interesting! I will try. I was using W3 Total Cache, but that was disabled temporarily. It might have been something I put in the htaccess file to help site speed. Perhaps I am trying techniques too advanced for my actual skill level. :B
Forum: Fixing WordPress
In reply to: Flatsome Home page messed up on mobile?Hi James – thank you for replying. Yes, I have changed WordPress + Site addresses at Settings -> General before, as a part of when this new site was launched to replace the temporary one.
-
<h4><?php the_title(); ?></h4>