Tagged: x
-
AuthorPosts
-
November 24, 2016 at 3:01 pm #1269863
JoaoModeratorHi Staffan,
Please do the following :
1. Revoke your License from X Addons section (check the bottom of the page) and also remove it from your license page on Themeco.
https://community.theme.co/my-licenses/
2. Temporary disable any caching plugins and purge all your server cache.
3. Delete both X theme (/wp-content/themes/x) and Cornerstone plugin (/wp-content/plugins/cornerstone) by connecting to your FTP (your settings will be saved in the database)
4. Download the latest copy of X and upload it to your themes folder via FTP OR you can upload the x.zip via Appearance -> Themes section.
5. Latest version of Cornerstone will be installed automatically when you head over X Addons section. Now you try validating your X theme again and then try to install any other extension and it should function properly.
If you are using a Child Theme please read this thread as well:
https://community.theme.co/forums/topic/child-theme-updates/
Let us know how it goes.
Thanks!November 30, 2016 at 1:18 pm #1276386
SWH_LayoutParticipantHi again,
I have been trying to figure out how to revoke the license. There is nothing but extensions and approved plugins in the addons sections. Also a link to the mentioned manage your licenses page on Themeco. No revoking option.Please give a hint!
Thanks,
/StaffanNovember 30, 2016 at 5:40 pm #1276663
RadModeratorHi there,
There is no revoke option in license page, just click the x icon beside/in front of the assigned domain/URL.
The Revoke function is within Addons page, on the right beside the extension list, which usually has this text “Your site is validated. Revoke validation.”. Just Click Revoke validation.
Hope this helps.
December 1, 2016 at 11:15 am #1277623
SWH_LayoutParticipantHi,
I have done it all but nothing has changed – woocommerce still doesn’t work./Staffan
December 1, 2016 at 11:56 am #1277675
SWH_LayoutParticipantHi again,
I have now deleted the woocommerce plugin and reinstalled it. samme issue. It’s as if X and woocommerce are not compatible any more … or is it the fact that the X shortcodes have been closed down in favour of cornerstone? Does cornerstone actually work on my site?/Staffan
December 1, 2016 at 7:33 pm #1278223
RadModeratorHi there,
Would you mind providing some screenshots of what you’re getting now? It looks okay on my end now. Or are we looking on the same issue?
Cornerstone is a builder and it’s not connected to Woocommerce.
Thanks!
December 1, 2016 at 11:29 pm #1278410
SWH_LayoutParticipantHi,
No it’s not ok.
The shoppage should show all the product categories – it shows nothing. There is no connection between X and woocommerce and thats the issue. When I ticked breadcrumbs in appearence the categories dissapeard from the shop page and efter that it has been impossible to get them back.
if you type the url recaremed.se/butik you’ll see nothing but the header “Butik” and no product categories below.
What I need to know is if it is the X Icon that is simply not compatible with Woocommerce or if it’s possible to fix this.
I truly appreciate your help with this!Thanks,
/StaffanDecember 2, 2016 at 12:37 am #1278461
Rue NelModeratorHello There,
Thank you for the clarifications! Are you referring to the breadcrumbs? By default, it will only display the Home > Shop > Product page. If you want to insert the product category in the breadcrumb, please check out these threads to do so: https://community.theme.co/forums/topic/how-to-feature-product-category-in-breadcrumbs/, https://community.theme.co/forums/topic/customise-product-page-and-insert-categories-in-woocommerce-breadcrumb/#post-1134894
Hope this helps.
December 2, 2016 at 1:10 pm #1279061
SWH_LayoutParticipantHi,
Displaying breadcrumbs is not the issue here, but it was when I turned the X breadcrumb on in appearence that the shoppage categories dissapeared. That is the issue – the fact that the shop page refuses to show any products. Since Nov 20 I have tried to explain this. The shop page does not show the product categories which means that the shop does not function.Please tell me why the product categories does not show up in the shop.
Please tell me why the shop name, which was changed in appearence, does not show.The shop page seems to be in limbo – with no connection to either woocommerce or the X-theme – please help me find out why…
Maybe a fresh start works. Is it possible to remove all created product categories from the data base – they do not dissapear when I deleted the plugin so they must be stored somewhere else. Can you advise?
Thanks!
/StaffanDecember 2, 2016 at 6:43 pm #1279332
Rue NelModeratorHello Staffan,
Thank you for the clarifications. The shop page is not displaying anything because of this code:
add_filter( 'woocommerce_get_shop_page_id', 'change_shop_page_id' ); function change_shop_page_id(){ return 9312; }Please try to remove this code from your child theme’s functions.php file
You have assigned “Butik” as the shop page in WooCommerce > Settings. This page has a page ID of 1421. If you want to find out the page ID, please check this out: https://community.theme.co/kb/how-to-locate-post-ids/
December 3, 2016 at 4:35 pm #1280073
SWH_LayoutParticipantWonderful, thank you so much! It’s all there again.
Back yo my initial issues the Shipping fields not showing at checkout- I found out why – freight class must be set, if not the fields will not show.My last issue is a continue shopping button.
I found this code which creates a copy of the add to cart button which is excellent, but how do I direct it to the shop page URL?add_action(‘woocommerce_after_add_to_cart_button’,’cmk_additional_button’);
function cmk_additional_button() {
echo ‘<button type=”submit” class=”button alt”>Change me please</button>’;
}Greatful if you will advise.
Thanks,
StaffanDecember 4, 2016 at 12:35 am #1280276
ChristopherModeratorHi there,
Please update your code to :
add_action('woocommerce_after_add_to_cart_button','cmk_additional_button'); function cmk_additional_button() { echo '<a href="#" class="button alt">Change me please</a>'; }Hope it helps.
December 4, 2016 at 7:47 am #1280445
SWH_LayoutParticipantHi ther,
Yes it did set me right. I added to the code so it finds the shop URL and it’s perfect many thanks!/Staffan
December 4, 2016 at 7:48 am #1280447
SWH_LayoutParticipantHere is the code
add_action(‘woocommerce_after_add_to_cart_button’,’cmk_additional_button’);
function cmk_additional_button() {$shop_page_url = get_permalink( woocommerce_get_page_id( ‘shop’ ) );
echo ‘Fortsätt handla‘;
}/Staffan
December 4, 2016 at 7:52 am #1280448
SWH_LayoutParticipantThat didn’t glue in correctly, sorry about that, this is better:
add_action(‘woocommerce_after_add_to_cart_button’,’cmk_additional_button’);
function cmk_additional_button() {$shop_page_url = get_permalink( woocommerce_get_page_id( ‘shop’ ) );
echo ‘Return to shop‘;Thanks again,
/Staffan -
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1264310 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
