kaylee
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Wrong calculationHello??? Do we have any ETA of when this bug will be fixed?
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Wrong calculationI am having this same issue. If there are more than 1 of the same product (in my case with different variations), the price display of the first item is overwritten by the price of the second. The subtotals of the cart are right, but the display in the cart is not right. See screenshot.
Forum: Plugins
In reply to: [Yoast SEO] Description tag not showing in google.Bump
Same problem.
Forum: Plugins
In reply to: [Easy Booking for WooCommerce] developer available for hire?Plugin has already been developed! Thanks for responding.
Forum: Reviews
In reply to: [WP Customer Reviews] clunky and awkwardThanks for your reply. I look forward to the new release.
Have you considered using dashicons or font awesome for the stars? That might help with the styling. (I created my own graphic and overwrote it in the plugin….)
I tried to mention multiple times that that wasn’t a valid solution. 1. My client doesn’t know how to use FTP and needs to upload via WP. 2. I’m on a shared server. There is no where on the server outside of WP that is secure enough that I can get to. I said this several times and it just felt like you weren’t reading. Instead I got a lesson in FTP.
Forum: Plugins
In reply to: First Data Global Gateway Web Service API pluginme too. Tried wp ecommerce and its been a disaster from the start. Did you find anything else?
Forum: Fixing WordPress
In reply to: previous and next linksIs there a way to exclude parent categories or if the post were in another category?
Forum: Themes and Templates
In reply to: display class on current pageGot it! You have run the get post id outside the loop, put that into a variable, and then run it a second time and compare the two.
the code…
// run this outside the loop <?php $postid = get_the_ID(); ?> //inside the loop <?php $current = get_the_ID(); ?> //where you want the class to be <?php if ($current == $postid) { echo 'class="current"'; } else { } ?>
[Please post code snippets between backticks or use the code button.]
Forum: Themes and Templates
In reply to: display class on current pageOh! I will try that…
Forum: Themes and Templates
In reply to: display class on current pageWell I am running a loop to display the titles and I would like to add a class to the current post that is being viewed so the user knows where they are.
here’s what i have so far…
<?php //get the id of the page, only works outside the loop ?> <?php $current=$post->ID; if ( is_single($current) ) { //echo 'id="current"'; } else {} ?> <?php // to run the list ?> <?php query_posts('cat=9&order=DESC'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <li><a>"><?php the_title(); ?></a></li> <?php endwhile; ?>
[please make sure to mark your code either using backticks or the ‘code’ button]
Forum: Themes and Templates
In reply to: display class on current pageWell I’ve got a static page that outputs a list of post titles on the sidebar.
This would be the body tag…
<body class=”page page-id-4 page-template page-template-page-services-php logged-in admin-bar”>Forum: Themes and Templates
In reply to: display class on current page<body class=”page page-id-2 page-parent page-template page-template-page-about-php logged-in admin-bar”>
Note: I don’t want to have to write a bunch of if is_single(’30’) conditional tags. I would like it to be dynamic. If I can display the post id outside the loop, can i then apply it to a variable and match it to that post in the loop?
Forum: Themes and Templates
In reply to: display class on current pageyes