AdvancedCreation
Forum Replies Created
-
Forum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Debug PHP NoticeYou’re welcome
Forum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Debug PHP NoticeWe fixed it, please look for version 3.9.0
Thank you
olivierForum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Debug PHP NoticeHello,
I will have a look and let you know
Thank youHello,
You can make Shipworks send an email with your tracking information. But for now no emails are trigger by woocommerce actions, this is in our list of updatesForum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Shipworks plugin disabling updatesThe new update fixed this issue
Hello,
Shipworks only download orders, if an order is modified Shipworks will update the order. If your customers just update their editable address it won’t modify orders so nothing will go on Shipworks.
Hello,
Sorry just saw your message,
Hope you find out since. Otherwise, please send us an email via our form on our website with your wordpress credentials so we will check that
https://www.advanced-creation.com/web-design-contact/Most of the time, you have to use https on the url module
Let me know
OlivierForum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Invalid Order TotalsHello,
Sorry, just saw your message on wordpress (I have to change the notification),
I guess you find another solution, but you are certainly using a plugin not compatible yet with our plugin. Please let us know the plugin and we will create an update to make compatibleThank you
OlivierHello,
Sorry I didn’t see your message in wordpress,
We updated our plugin 3-4 months ago to get all status orderThank you
OlivierHello,
Sorry didn’t see your message on wordpress,
We know about the issue, we have a conflict with another plugin. An update will solve this issue. I recommend for now, to deactivate the plugin who is creating the conflict, if you need our help to find the plugin, please let me know
OlivierForum: Plugins
In reply to: [ShipWorks Connector for Woocommerce] Not Pulling Shipping MethodHello,
Sorry I didn’t see your question in wordpress, can you go on our website advanced-creation.com and send us your wordpress credentials so we can check the issue and fix it quickly ?
https://www.advanced-creation.com/web-design-contact/
Let me know
OlivierForum: Fixing WordPress
In reply to: posts_per_page in query doesn't matchI gave you an example with query posts, but when it didn’t work I tested it with WP_Query and I get the same issue
Maybe I should tell you again when I will develop another site and send you an example with the precise code
Forum: Fixing WordPress
In reply to: posts_per_page in query doesn't matchI finally remove the wp query, but I have another one who was working fine on previous wordpress version but not on the wordpress 4.0
<?php global $query_string; query_posts( $query_string . '&posts_per_page=3');?> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <div class="post-content"> <?php if ( has_post_thumbnail() ) : ?> <div class="thumbnail"> <a class="linkImg" href="<?php the_permalink(); ?>"> <?php the_post_thumbnail('community-category'); ?> </a> </div><!-- thumbnail --> <?php endif; ?> <div class="date"><?php the_time('F j, Y'); ?></div> <?php the_excerpt(); ?> <?php echo '<a class="readmore" href="'.get_permalink().'">read more ></a>'; ?> </div> <!-- .post-content --> </div> <!-- .post --> <?php endwhile; ?> <div class="nav_pages" role="navigation"> <?php if ( get_next_posts_link() ) : ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentythirteen' ) ); ?></div> <?php endif; ?> <?php if ( get_previous_posts_link() ) : ?> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?></div> <?php endif; ?> </div><!-- .navigation -->