visualxl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I cannot access my site after upgradingThanks for the advice! I shall keep this into consideration in future.
By the way, I managed to solve this problem by simply restarting the httpd server. I dunno why it works, but it works.
I simply issued “service httpd restart” hoping everything will go back to normal, and it did surprisingly without having to rename the plugins folder since I did that before I see the replies here. ??
Forum: Themes and Templates
In reply to: [Vantage] Mobile Site Is Not WorkingIt seems that vantage is not able to optimise for mobile phone properly, especially if you are using a page builder.
As such, I had to modify the CSS for each page one by one. I have just finished editing the homepage CSS.
Forum: Themes and Templates
In reply to: [Vantage] Mobile Site Is Not WorkingForum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsRead up more on product variation. I believe you can achieve it with variation instead of the simple product. You can even set different quantity on different varations.
Say, $30 – 20 stocks.
$40 – 40 stocks, and so on.Forum: Plugins
In reply to: [WooCommerce] Product Images Not Sizing ProperlyI had the same problem for 2 websites that I developed for my client. The only solution that I could get it work was to resize properly is through custom css. Hope that helps!
Modified ‘piwik-woocommerce-integration’ plugin -> ‘class-wc-piwik-tracker.php’
1. Replaced
piwikTracker.addEcommerceItem()
and its implementation with://add order
_paq.push([‘addEcommerceItem’,
“<?php echo esc_js( $_product->get_sku() ); ?>”,
“<?php echo esc_js( $item[‘name’] ); ?>”,
“<?php
if ( isset( $_product->variation_data ) )
echo esc_js( woocommerce_get_formatted_variation( $_product->variation_data, true ) );
?>”,
<?php echo esc_js( $order->get_item_total( $item ) ); ?>,
<?php echo esc_js( $item[‘qty’] ); ?>]);2. Replaced
piwikTracker.trackEcommerceOrder()
and its implementation with:// Track order
_paq.push([‘trackEcommerceOrder’,
“<?php echo esc_js( $order->get_order_number() ); ?>”,
<?php echo esc_js( $order->get_total() ); ?>,
false,
<?php echo esc_js( $order->get_total_tax() ); ?>,
<?php echo esc_js( $order->get_shipping() ); ?>,
false
]);
_paq.push([‘trackPageView’]);3. You may want to modify/update the plugin, and/or advise me if there is something else I need to do.
I came across this post at
https://stackoverflow.com/questions/8686125/update-wordpress-theme-on-ec2I just issued the below and it works!
sudo chown -R apache:apache path/to/wordpress
Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsHey thanks for your reply. I am pretty aware of a few extensions that could solve my problem, but they are not free. Its unlikely that I would fork out some money for another extension as I have just bought an extension that allows you to rent equipments.
I agree with you, woo commerce should at least allows the fix cost thingy or the deposit thingy.
In the meantime, in order to cut cost, I added the deposit to the shipping cost. However, at the checkout page, I modified the plugin source codes in such away, that it only display the shipping cost, or both shipping cost and deposit so that it is clear to whoever is renting the equipments. Not a neat implementation I must say.
Forum: Plugins
In reply to: [WooCommerce] How To Add A DepositCurrently, the way I did it is, I added the deposit in the shipping section.
So for example, if shipping is $12, and deposit is $150, at the review order page, you will see:
shipping + deposit ($150) : Local Delivery ($162)
But that is not the right solution.
Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsI am looking for this solution too. I need a deposit function that can be added on top of the item price.
So when you checkout, you see another row/column that states your deposit, and add to the subtotal.
Forum: Plugins
In reply to: [WooCommerce] Auto populate value fields in checkout billing/shipping areaAfter the recent woo commerce updates, I am no longer able to fill the default zip code automatically. I did opened another thread for this. Anyone know how to solve this?
ManusH: Thanks man! That solve my issues! ??
Forum: Plugins
In reply to: [WooCommerce] Auto populate value fields in checkout billing/shipping areaScott!! You are good! I have been spending the whole day trying to set the value. I never knew there is this thing called ‘default’!
Forum: Plugins
In reply to: [WooCommerce] Cart Shipping Options?By this statement, I presume you only have 2 methods, local delivery, and local pickup? Or if I am wrong, how many methods do you have?
Forum: Plugins
In reply to: [WooCommerce] Cart Shipping Options?You need to enable the shipping methods. Go to shipping tab, and enable whatever shipping methods you want to enable.