Thanks for all your effort this is a great plugin!
I make modifications to my website on localhost then use this plugin to export / import to the live website, the problem I’m having is it overwrites the orders customers have placed, is there a way for me to omit those from the export / import process?
Kind Regards.
]]>Is there a way for me to create a calendar (ala shortcode) for items which don’t have a particular category or tag?
What I’m trying to do is this: I’ve got my local calendar with all its usual categories and tags.
BUT, I also now created a category for events taking place beyond my locale.
This way I can re-create my original calendar to only feature everything that doesn’t have that ‘beyond my locale’ category…and a different calendar which of course would make sure to list only those events taking place ‘beyond my locale’.
Hope I explained that well.
Is this possible?
]]>I have an image in my footer that I would like to omit from Poping up in a Modal window – can this be done?
www.yorkshirekoi.com
many thanks once again
https://www.ads-software.com/plugins/iw-magnific-popup/
]]>Here’s a picture of the issue:
https://dl.dropboxusercontent.com/u/75929470/filedunder.jpg
https://www.ads-software.com/plugins/squelch-tabs-and-accordions-shortcodes/
]]>email-users.php
function mailusers_send_mail
build headers section.
// Build headers
$headers[] = ($omit) ? $sender_email : \
sprintf('From: "%s" <%s>', $sender_name, $sender_email);
$headers[] = sprintf('Return-Path: <%s>', $return_path);
$headers[] = ($omit) ? $sender_email : \
sprintf('Reply-To: "%s" <%s>', $sender_name, $sender_email);
When the $omit
is true
, the code only insert simple email address to $headers
without "From:"
,which will not work. So I made some changes:
$headers[] = ($omit) ? sprintf('From: %s',$sender_email) : \
sprintf('From: "%s" <%s>', $sender_name, $sender_email);
$headers[] = sprintf('Return-Path: <%s>', $return_path);
$headers[] = ($omit) ? sprintf('Reply-To: %s', $sender_email) : \
sprintf('Reply-To: "%s" <%s>', $sender_name, $sender_email);
Plz fix the bug next version .
Thanks for the cool plugin!
https://www.ads-software.com/plugins/email-users/
]]>https://www.ads-software.com/plugins/jquery-t-countdown-widget/
]]>What I would like to achieve is to leave out the page title h1.postitle because I want to replace it with graphic.
I have made a child theme, I am speaking (for now) of my index page which is fullwidth with no sidebar. I have so far changed single.php and page-fullwidth.php but to no avail.
Please advise?
Kind regards,
Wiljo
an example of one of the pages can be found here: https://charliecanfield.com/wp/category/work-for-clients/
]]>But what I now want to know is how do I set up my main blog to omit that category?
Basically I’m trying to have two blogs: ‘Stories’ and.. one containing everything else. ‘Stories’ won’t show the other categories and the main blog won’t show ‘Stories’.
The code I’m using is below:
get_header();
if ( is_page() ) {
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
query_posts( 'post_type=post&paged=' . $paged );
}
?>
<div id="main" class="site site-with-sidebar">
<div id="content" class="site-content"><?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
/**
* Include the Post-Format-specific template for the content.
*/
get_template_part( 'content', get_post_format() );
endwhile;
if ( $wp_query->max_num_pages > 1 ) :
fluxus_content_paging();
endif;
else :
get_template_part( 'no-results', 'index' );
endif; ?>
</div>
<?php get_sidebar( 'blog' ); ?>
]]>