JovanaV
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Theme content disappearedHi tourboy,
You need to import the demo content for the chosen theme in order to have it look like the demo version.
Best regards,
JovanaVForum: Fixing WordPress
In reply to: WordPress Upadate failedHi friends4ever,
Probably you are experiencing the error commonly known as white screen of death.
Most probable reasons for that are exhausted the memory limit, plugin related issues or theme related issues.In order to increase the memory limit edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder. You need to paste this code in wp-config.php file define(‘WP_MEMORY_LIMIT’, ‘256M’); right after the line define(‘WP_DEBUG’, false);.
If this is not fixing the problem deactivate all plugins.
There are two methods for disabling your plugins. One requires you to use FTP, and the other requires you to use phpMyAdmin.After you log in to FTP, go to plugins folder and rename it to something like plugins_old and create a new, empty folder labeled plugins. Move the plugins one by one from the plugins_old folder to plugins, and activate them individually.
To deactivate all plugins using phpMyAdmin you need to log in to your web hosting dashboard. Navigate to your website database then click on the wp_options table. Inside wp_options table find the option ‘active_plugins’ and then click on the Edit. Change the option_value field to a:0:{} and then click on Go to save your changes.
If after you have deactivated every plugin on your site, you’re still getting a white screen, next step should be to change your WordPress theme to one of the default WordPress themes.
More information you can find on the WordPress official documentation page.
Best,
JovanaVHello,
If you already created coupon you need to make sure that is “Allow free shipping” box in beck-end checked.
Than you enable free shipping for coupons. Go to your “Free Shipping option” and select the option “A valid free shipping coupon” and save changes.Now customers can use the coupon.
Cheers,
JovanaVForum: Plugins
In reply to: [WooCommerce] Product page not reacting to custom CSSHello,
If you inspect the “product text” you will see that you already have set
margin-bottom: 25px
.You need to override this rule by adding !important like this:
.woocommerce div.product div.summary, .woocommerce #content div.product div.summary { margin-bottom: 100px !important; }
Regards,
JovanaVForum: Fixing WordPress
In reply to: Login form:submit button beneath password-reset linkHello Colin,
Problem is display property for label element in div with class ‘button_div’.
Instead ofdisplay: block;
you need to set display property to inline-block.Cheers.
Forum: Networking WordPress
In reply to: Running two domains with one wordpress databaseHello Vahid,
You can use one WordPress installation for two domains, that is WordPress multisite network. This means that by installing WordPress just once on your server, you can run as many sites as you want.
All of your network’s themes and plugins will be stored just once.With a multisite network you will have one database, but nine of 11 database tables for storing your site’s content and settings will be duplicated for each site. This keeps the content for each site separated.
With this setting you will not run and install everything twice, but you will need to write content for both of your websites separately, for English and for Italian language.
Also you have WPML plugin and I think it is much better and stable solution. WPML can serve different languages from different domains and it is compatible with SEO.
Best regards,
JovanaV.Forum: Themes and Templates
In reply to: [Virtue] how to add feviconHello,
You can see from WordPress documentation how to add favicon to your website:
https://codex.www.ads-software.com/Creating_a_Favicon.Cheers.
Forum: Fixing WordPress
In reply to: What have I done?Hello,
Can you tell me which theme you are using?
Regards.
Forum: Plugins
In reply to: [WooCommerce] Can i have one product with many variations?Hello,
In WooCommerce you can create variable product – a product type that lets you offer a set of variations on a product.
Please check the documentation for more details:
https://docs.woothemes.com/document/variable-product/Kind regards.
Forum: Themes and Templates
In reply to: [Virtue] Removing image shadow/borderHello,
You can do it simply by pasting this in Virtue custom CSS box:
img.light-dropshaddow { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
Best regards.
Forum: Themes and Templates
In reply to: How to remove Footer Text in Freesia EmpireHello,
I suggest you to:
1. Create child theme
2. Override footer hook in child functions.php with the following code snippetfunction my_site_footer() { if ( is_active_sidebar( 'freesiaempire_footer_options' ) ) : dynamic_sidebar( 'freesiaempire_footer_options' ); else: echo '<div class="copyright">' .'? ' . get_the_time('Y') .' '; ?> <a title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" target="_blank" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php echo get_bloginfo( 'name', 'display' ); ?></a> </div> <?php endif; } function my_action_override() { remove_action( 'freesiaempire_sitegenerator_footer', 'freesiaempire_site_footer' ); add_action( 'freesiaempire_sitegenerator_footer', 'my_site_footer' ); } add_action( 'init', 'my_action_override' );
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Display recently viewed products on cart pageHello,
You have widget bundled into WooCommerce which allow you to display a list of products the customer has recently viewed.
Look at documentation for widgets included with WooCommerce:
https://docs.woothemes.com/document/woocommerce-widgets/Regards.
Forum: Localhost Installs
In reply to: can only do admin-log-in at 1 of my 2 websites at a timeYou may consider using commercial plugin – MenageWP.
ManageWP is a tool that allows you to easily manage multiple WordPress sites from one dashboard, and they are offering 14 days free trial for all premium features.Cheers.
Forum: Localhost Installs
In reply to: can only do admin-log-in at 1 of my 2 websites at a timeHi Ute,
Yes, you can use the same WordPress installation.
WordPress Multisite is a special “mode” built into WordPress, which allows you to create a network of multiple websites, all running on a single installation of WordPress.
You can create new sites and manage them using the same username and password.Regards.
Forum: Localhost Installs
In reply to: can only do admin-log-in at 1 of my 2 websites at a timeHello,
I would suggest running WordPress in multiple site mode. You can see from documentation how to install and setup WordPress multisite network:
https://codex.www.ads-software.com/Create_A_NetworkRegards