estuffs
Forum Replies Created
-
Nope, no longer using this plugin.
Forum: Plugins
In reply to: woocommerce category page slow to loadThanks for the suggestion, but I wish it was that easy… Opening up the discussion here with a bigger audience to see if anyone has encountered that.
Forum: Plugins
In reply to: [WooCommerce] Best option for drop shipping in woo commerceI was looking for a solution within woocommerce to address my drop shipping dilemma as well. I need to review orders below it gets automatically get sent out.
What other features do you guys want to see? I was thinking of developing something for me and mind as well consider what struggles you had.
Forum: Fixing WordPress
In reply to: Displaying Custom Fields in a tableFigured out item 2. Had to put the calculation outside the echo and then call the value in echo.
Forum: Fixing WordPress
In reply to: Displaying Custom Fields in a tableHi vtxyzzy, thanks, it worked.
1. Regarding, $bulkqty1a = get_post_meta($post->ID, ‘_bulkdiscount_quantity_1’, true); how come we’re using $bulkqty1a, instead of $bulkqty1, without the “a”?
2. Another question (for anyone), instead of showing the % discount, I want to show the value based on this calculation, $bulkdis1a-($bulkdis1a * $pricea), but that doesn’t work. Do I need to put this in the function.php file and somehow reference in this file?
Thanks again.
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] How to move info on product pageSorry Dave, I can only see the discount rates displayed on the CART page and not on a product page. I think I’m totally missing something on woocommerce -> setting -> Bulk Discount section. I dont any specific product page settings, only for cart.
You have this section on your site,
Stock Up & Save: Buy 5 or more and save 10% automatically on this purchase!
How did you add that there?Thanks kieranbarnes, ill try this once I figure out how to actually display the bulk grid on the product page. Do you have any idea how?
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] How to move info on product pageHi Dave and Scweb, how did you guys get the bulk table to display on your product page? I’m trying to show this on the product page and can’t figure it out.
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Plugin Installed But Can't See Any SettingsCheck the Plugin page for WP and click on settings.
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Display tiered prices upfrontHector, i noticed that you are now displaying the tier pricing on your page, can you provide the code on how its done? Thx.
Forum: Plugins
In reply to: [Display Posts - Easy lists, grids, navigation, and more] Space between postshow did you resolve it? I think Im having the same issue.
Forum: Plugins
In reply to: [Post Content Shortcodes] Showing Title below ImageThanks for the update. I tried entered the shortcode twice to see how it looks. It looks like there is not page break between the two so I tried entering a
, it would still continue one straight row until it cannot fits and continues to a different row. Is there anyway to enter a line break?
[post-list show_image=true numberposts=4 show_title=false]
[post-list numberposts=4 show_image=true category=2]Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Customizing the TablesHi replaced anything referencing table 4 with the below, changing the width to 1000 because the layout is 1000px now, but the first column is still not 200px.
.tablepress-id-4 { width: 1000px !important; } .tablepress-id-4 tbody td, .tablepress-id-4 tbody th { padding: 3px; } .tablepress-id-4 .column-1 { width: 200px !important; } .dataTables_wrapper .tablepress-id-4 .sorting div:after, .dataTables_wrapper .tablepress-id-4 .sorting_asc div:after, .dataTables_wrapper .tablepress-id-4 .sorting_desc div:after { content: ""; } .dataTables_wrapper .tablepress-id-4 .sorting, .dataTables_wrapper .tablepress-id-4 .sorting_asc, .dataTables_wrapper .tablepress-id-4 .sorting_desc { padding-right: 4px; }
2. How do I change the font style to be normal and not all upper case?
3. How do I adjust the padding inside the cells?Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Tablepress CSSSorry link
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Width ControlTo piggy off this
1) Is there a way for me to do this for all tables? Is it a matter of replacing .tablepress-id-4 with .tablepress2) Also, my “thead th” seems to be overwritten by my current theme settings.
.entry table thead th {
background: #fafafa;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
text-transform: uppercase;
padding: 1.387em;
vertical-align: middle;I tried using, the code below, but its not taking it.
.tablepress table thead th {
background: #fafafa;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
text-transform: none;
padding: 5px;
vertical-align: middle;
}Thanks in advance.