Kai2810
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cart Stock Reducer] Countdown timer not shown in cart / checkoutHi James,
Thanks for replying. Nope, I didnt see your countdown anywhere. I have a countdown timer installed on my product page only, but that’s another plugin which does not have a countdown for the cart / checkout pages.
I’m using Avada 5.1.6.
I looked at my pages, I saw the following. Seems like the theme is using the WooCommerce shortcodes to build the /cart, /checkout and /review-order-keep pages.
- This reply was modified 7 years, 8 months ago by Kai2810.
Hi, just updated the plugin to 3.2.1
Still the same thing, can’t access the settings page. The error looks similar as well. Any ideas?
Same here, the zone name shows up on my settings page as well.
Hi thellimist,
Any updates on this issue?
Hi there, thanks for the quick response.
I’m using the Chrome console log thing, not sure if that’s the best way to do it. Right clicked on the error messages that popped up on the console when I clicked on settings.
Attached is the log.
https://1drv.ms/u/s!Aj99irJinMf5guYEbCLpXZE-F-mYCQ- This reply was modified 8 years ago by Kai2810.
Forum: Themes and Templates
In reply to: [Optimizer] ERROR: Cannot modify header information.That did the trick, thanks.
Why not update your theme to include this change?
Forum: Fixing WordPress
In reply to: Can't restore my years of postings, please help :(Thanks Tirumal,
That worked! I got to change the database prefix settings in the wp_config.
I think it didn’t work previously due to the wp_config database prefix not set correctly.
Forum: Fixing WordPress
In reply to: Can't restore my years of postings, please help :(how about the posts themselves? the wordings?
Forum: Fixing WordPress
In reply to: Can't restore my years of postings, please help :(Is there any file in the wp_content folder that i can try to use to restore my posts?
Forum: Fixing WordPress
In reply to: Can't restore my years of postings, please help :(Okay, so now what are my options?
I have copied out my wp_content directory and did a database backup using phpMyAdmin…
Forum: Networking WordPress
In reply to: Can't get multisite to work…please helpI am using my host’s Softaculous to install my multisite. Could that be the issue?
Here’s my Config file.
define('WP_DEBUG', false); define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'www.internetmarketing4noobs.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
Forum: Fixing WordPress
In reply to: Need help in extracting latest post meta dataany advice?
Would greatly appreciate any help!
Forum: Fixing WordPress
In reply to: Need help in extracting latest post meta datahi, can anyone help? ??
Forum: Fixing WordPress
In reply to: Running out of hair to pull. Need help!Anyone?
Forum: Fixing WordPress
In reply to: Running out of hair to pull. Need help!hey apljdi!
Thanks for replying, your code managed to get the banner up! But the pics are not displaying.
<?php $categories = get_categories('child_of=3&orderby=ID&hide_empty=0'); foreach ($categories as $cat) { $posts=get_posts('showposts=1&cat='. $cat->cat_ID); $img_src = get_post_meta($posts[0]->ID, 'lead_image', true); echo '<div id="post-<?php the_ID(); ?>" class="main-post-bg showhero"> <img src="'.get_bloginfo('template_directory').'/scripts/timthumb.php?src='.$img_src.'&w=700&h=225&zc=1" width="700" height="225" /></div>'; if ($cat->category_parent != 0) { $indent = '<span style="padding-left:10px;">'; } echo '<div class="title-insert main-post-bg-b showhero" '.$indent.'> <h2> <a href="https://www.doffocourt.com/category/doffohim/'.$cat->category_nicename.'/">'.$cat->cat_name.'</a> </h2> </div> '; } ?>
Here’s what it looks like.
https://www.doffocourt.com/category/doffohim/Any idea how to get the banner pic of the latest post to show up? Just for clarification, every post will have a banner pic and a thumbnail pic. For example, https://www.doffocourt.com/category/doffoher/necklaces/ has two post under the sub-category “Necklaces”.
I’m trying to get the banner pic of the post “Mini heels!” (or rather the latest post) to show up for the sub-category “Necklaces” when visitors click on the “For Her” parent category page.
I also noticed that this theme I’m using somehow uses the post ID as part of its DIV id?
<div id="post-<?php the_ID(); ?>
How does that work? I looked around in the CSS codes and nothing really refers to that dynamic DIV id.