edoriv
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Product Timer for WooCommerce] Unpurchasable suddenly stopped working.Thanks as I had mentioned this had previously been working for over a month with no problems and the other settings still work such as hidden or out of stock. It’s on the unpurchasable option not working.
this is my schedule
Action Set out of stock (previously unpurchasable)
Time conditional EverydayAction Set in stock (previously purchasable)
Time conditional Weekly on every Monday 10:am – 3:pmAction Set in stock (previously purchasable)
Time conditional Weekly on every Tuesday 10:am – 3:pmAction Set in stock (previously purchasable)
Time conditional Weekly on every Wednesday 10:am – 3:pmAction Set in stock (previously purchasable)
Time conditional Weekly on every Thursday 10:am – 3:pmAction Set in stock (previously purchasable)
Time conditional Weekly on every Friday 10:am – 3:pmI tried through support to resolve the issue. I made it clear what the problem was. I made a video showing exactly what was wrong. I tested with other plugins that provide similar functionality and they work. So fine I’m moving on. But I wanted others to be aware that if seomthing isn’t working that requires effort to correct you may not get the support you may be expecting. Spend your money someplace else. This was not resolved.
Done – thank you. I hope this can be resolved
Forum: Plugins
In reply to: [WPC Smart Quick View for WooCommerce] Stay on page after adding to cartI just posted about this not working as expected. For now I’ve had to install a different plugin that handles add to cart correctly. I tried 6 other plugins all of them correctly handle Ajax. I expected the option to “Word like Archive page” with Ajax enabled for archives to provide the desired result.
Forum: Fixing WordPress
In reply to: Post content ( the_content() ) in lightbox or modal window?FWIW here’s how I did it….
The edits I made are all in the target template and are very simple
what it came down to was eliminating the header and footer if it’s loaded in the iframe, for the content to be loaded in an iframe the person MUST have javascript enabled. so if you enclose the header and footer includes inside of noscript tages they don’t fire if it’s in the iframe… also I want to use a little different styling for the div that remains with the content used in the iframe so I place a PHP variable inside of script tags so it only sets the variable IF javascript can run otherwise no extra styling is added to the dive the content is in. hope this helps.`
<noscript>
<?php get_header(); ?>
</noscript>
<script type="text/javascript">
<?
$inframe='style="background-color:#FFF; padding:10px; height:460; width:900px;"';
?>
</script>
<div id="mainContentalt" <?=$inframe?>>
<?
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
<noscript>
<?php get_footer(); ?>
</noscript>
`