Please guide me on what needs to be done.
We are facing issues to get order emails from the system. The system receives order and status is showing “Processing”, even we receive email from payment gateway service that we have received payment but the system didn’t generate order email.
What could be the reason and how to solve this issue.
]]>We have been in contact with our host and they tell us it’s a coding issue. Since the updates, our website is unable to add/change any products within woocommerce. One such error is:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 12288 bytes) in /home/kellymtb/public_html/wp-admin/includes/ajax-actions.php on line 3047
Please advise! Thank you.
]]>I’m new to coding, website design and all of that. So when I created a website, I uploaded a theme and made changes in the stylesheet, not realizing that was a terrible thing to do. I now understand I need a child theme so I can make changes safely without risking losing all of my hard work.
I read a “how-to” article by WordPress online and followed it step by step, but did not see the results the article said I should see.
This is the code I put into the child theme stylesheet I created in my file manager:
/*
Theme Name: Swell Lite Child
Theme URI: https://wifeinthewildblueyonder.com/swell-lite-child/
Description: Swell-Lite Child Theme
Author: Alexis M. Rose
Author URI: https://wifeinthewildblueyonder.com
Template: swell-lite
Version: 1.0.9
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, green, silver, one-column, two-columns, right-sidebar, responsive-layout, fluid-layout, custom-background, custom-header, custom-menu, featured-images, featured-image-header, flexible-header, full-width-template, translation-ready, sticky-post, threaded-comments, editor-style, theme-options, photoblogging
Text Domain: swell-lite-child
*/
Then, according to the “how-to” article, I needed to include the following code in a functions.php file to enqueue the parent and child theme style sheets:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
function theme_enqueue_styles() {
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style )
);
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
However, this code was breaking the site and not working at all. So I modified the code and this is what I currently have in the functions.php file for my child theme:
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/font-awesome.css' );
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style-editor.css' );
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style-mobile.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) );
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
?>
According to the article, I should see the stylesheet completely loaded into the child theme. But it’s not.
After all of that, my questions are: How do I fix this? How can I make my child theme work? What am I doing wrong?
Here is a link to my site, which is currently displaying the child theme:
https://wifeinthewildblueyonder.com/wp/
Thank you so much in advance for your help. I want to fix this before going live with the site.
Cheers,
Alexis
]]>1. Write copy in Word or word processor of choice. (He’s using Word through Google Docs).
2. Save as plain text.
3. Open in Notepad
4. Copy and paste into WordPress.
5. Format (Bold, italics, links, yadee, yadee).
No one except him has this issue where there is code all over the place, plus the article is usually in there twice because he says it always takes two tries to cut and paste it from Notepad into WP.
The only difference I can figure out is he’s using Windows 8.
Is anyone else having issues generating plain text into WordPress from Windows 8?
Am I missing something obvious? We’ve tried everything I can think of to fix this, but his posts are a mess.
Thanks!
]]>When the plugin is activated my WordPress login screen layout is all messed up. Instead of everything being in the center of the screen, it is moved over to the right third of the screen. I did positively narrow it down to this plugin because it was the only one activated.
Any ideas on what needs to be changed in the NextGEN coding to correct the problem? I really like this plugin and I’d prefer to keep using it.
I am having to start over from scratch because of other problems (couldn’t update posts), and I’m not willing to take a chance on plugins that are causing coding errors as I’m not sure what screwed up my site to begin with. Finally just bit the bullet and deleted everything (including database) to start over fresh.
Thanks for any help you can give.
]]>I didn’t make any changes that would have caused this. At least none that i know of? I have the proper call
<?php get_sidebar();?>
in the coding. It’s not the common sidebar wrapped around to the bottom issue, it’s actually gone on all pages.
here’s the link
and my code…sans the links and ad code
<div class=”right_sidebar_container_bottom”>
<div class=”right_sidebar_single”>
<img border=”0″ width=”300″ src=”https://www.yardbarker.com/images/ybn/badge_300.gif” height=”33″/>
<?php if(is_home()) {?>
<!– End ad tag –>
<p>
<?php wp_footer(); ?>
<p>
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/promo/technorati.jpg” alt=”links” /> ” onmouseover=”domTT_activate(this, event, ‘content’, ‘My first tooltip’, ‘trail’, true);”>
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/promo/rss.jpg” alt=”links” />
</br>
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/promo/valid.jpg” alt=”links” />
</div><!– end right sidebar container wrap –>
]]><?php get_header() ?>
<?php include(TEMPLATEPATH.'/includes/slide.php'); ?>
<div id="content">
<?php if (have_posts()) : $odd = true; ?>
<div id="mini-post-wrap" class="clearfix">
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="mini-post<?php if ($odd) : echo ' odd'; else : echo ' even'; endif; ?>">
<h3 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<div style="display: block; margin: 10px 0px 0px 0px;">
<?php the_excerpt_reloaded(80, '<img>', 'content_rss', FALSE); ?>
</div>
</div>
<div class="meta">
<span class="meta-left"></span>
<span class="date-post icon">Posted on <?php the_time('F j Y') ?></span>
<a class="read-more icon" href="<?php the_permalink() ?>" title="Keep Reading...">Keep Reading...</a>
<span class="meta-right"></span>
</div>
</div>
<?php $odd = !$odd; endwhile; ?>
</div><!-- /mini-post-wrap -->
<div class="navigation clearfix">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else: ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>
Thanks.
]]>