Creatrix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to use pages, plugin, theme, user…What steps entailed the moving of the site?
I presume you moved the database/updated links etc?
Do you have a site url?
Can you see the website on the front end?
Forum: Fixing WordPress
In reply to: Move WP to another domainYou name the folder something like ‘replace’, upload it to your root directory, then visit that address in your browser, e.g. https://www.mysite.com/replace.
Put in your old and new urls, check that the correct database tabled have been selected then run the script.
On completion you will need to log in to you new site and update the permalinks.
The fonts will work once you have done this. They are not currently working as you are still referencing them from your old site which breaches a cross domain policy.
Forum: Fixing WordPress
In reply to: Redirect Based on Location?Dated, but something like this may do the trick.
Forum: Fixing WordPress
In reply to: Move WP to another domainYou need to update the links in the database, as they will still contain refernences to xpto1.
A tool like this will help you.
Forum: Fixing WordPress
In reply to: FTP CredentialsYou can define the FTP details in wp-config.php to avoid being asked for them every time when updating/installing.
Something like the following should work:
define('FTP_USER', 'username'); define('FTP_PASS', 'password'); define('FTP_HOST', 'host');
Forum: Plugins
In reply to: [WooCommerce] 'Add to Cart' re-directs to product pageWho knows. Thanks for your help!
Forum: Plugins
In reply to: [WooCommerce] 'Add to Cart' re-directs to product pageSo i’ve removed the ‘%s’ from the class and it works now.
I’m presuming that the add_to_cart class was adding it to the cart?
Forum: Plugins
In reply to: [WooCommerce] 'Add to Cart' re-directs to product pageThe text on the button changes when I change the last ‘%s’ which leads to me to believe that the file is working and the template structure is correct.
For some reason it still adds to the basket though.
I’m developing the site locally so can’t provide you with a link i’m afraid, guess i’ll have to keep digging!
Forum: Plugins
In reply to: [WooCommerce] 'Add to Cart' re-directs to product pageThanks for this. I’ve swapped that over in add-to-cart.php and have my template structure correct, but the button is still adding the product to the basket, as opposed to going to the individual products page.
My add-to-cart.php looks like this.
Is this correct?
Forum: Plugins
In reply to: [WooCommerce] 'Add to Cart' re-directs to product pageThanks for the reply. I’m still stuck though – so it would be something like this?
esc_url( $product_id->get_permalink() ),
Forum: Plugins
In reply to: [WooCommerce] Disable scrolling when a tab is clickedYou’ve just made me realise that is was some JS I used earlier in the project that was causing the issue.
Thanks!
Actually, i’ve figured it. No worries. Thanks
Thanks for the reply.
So for example the first few rows of my import look like this
I can display the title by using:
<?php echo the_title(); ?>
but how would I go about displaying the custom field for address?
I’ve set an address 1 field in Advanced Custom Fields but:
<?php the_field('address_1');?>
doesn’t seem to work?
Any clues?
Forum: Fixing WordPress
In reply to: Help please. My entire site seems to have disappeared.Looks like you have it fixed now?
Forum: Fixing WordPress
In reply to: Adjustable Pricing?You will most likely need a plugin for this kind of functionality, more specifically something like woocommerce.
I know this plugin offers something called product variations, where you are able to set a price difference for each option.