whois
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin not openingwhat is the last thing you do before you get the white screen..
do you modify or add something to your functions.php file?Forum: Fixing WordPress
In reply to: wp-admin not openingI can access both your https://mosaicfamilymag.com/wp-login.php and https://mosaicfamilymag.com/wp-admin/ from here.
Forum: Fixing WordPress
In reply to: Need to add online booking with calendarHai Jen000,
You can use woocommerce but maybe need to make a modification to suite your need/how your friend website operate..
or you just can try to search other plugin at
https://www.ads-software.com/plugins/search.php?q=booking+online
maybe you will find an easy to use plugin.
ex:
1. https://www.ads-software.com/plugins/bedbooking-booking-calendar-reservation-system/
2. https://www.ads-software.com/plugins/solidres/
but if you still want to use woocommerce, there is a lot of tutorial how you can do it, just google it.
Forum: Installing WordPress
In reply to: problems with quickinstallI can see birkenwald.net is working and https://birkenwald.net/wp-login.php too.
Forum: Plugins
In reply to: [WooCommerce] Remove 'Continue shopping' button from added to cart messageHai Irandoust,
Glad to hear you solve your problem.
Forum: Plugins
In reply to: [WooCommerce] Remove 'Continue shopping' button from added to cart messageI’m so sorry, the above solution is not working.
After I try, I found solution as below.
Paste this inside your theme ‘functions.php’ file.
add_filter( ‘wc_add_to_cart_message’, ‘__return_false’ );
function add_stylesheet_to_head() {
echo “<style> .woocommerce .woocommerce-message{display:none;} </style>”;
}add_action( ‘wp_head’, ‘add_stylesheet_to_head’ );
The version I try:
WordPress: V 4.5.2
Woocommerce : V 2..5.5Forum: Plugins
In reply to: [WooCommerce] Remove 'Continue shopping' button from added to cart message1- Create a new folder in your theme folder, name it ‘woocommerce’
2- Create a new folder in the new ‘woocommerce’ folder, name in ‘cart’you get:
– ‘wp-content’
> ‘themes’
> ‘your-theme-folder’
> ‘woocommerce’
> ‘cart’3- Copy cart.php from woocommerce plugins folder to your new woocommerce folder in ‘your-theme-folder’
– wp-content/plugins/woocommerce/templates/cart/cart.php
Remove this line:
<?php do_action( ‘woocommerce_before_cart_table’ ); ?>