Gewitter27
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce JSON parser errorI’m having the same issue as well. It’s very fristrating as I was not able to re-create the error myself but only heard from a few clients about this. I managed to get a screenshot now and also managed to recreate the issue. but it doesnt happen all the time. has anyone managed to track this down? I only have paypal as payment option.
Forum: Plugins
In reply to: [Store Locator Plus?] Import and export locationsHey, there is, its the pro pack add-on, costs 50$. I’ve got it and can import and export all locations in a csv file, its great.
Sorry but I can’t help you, I searched around for my solution and just copied and pasted what seemed right. Maybe you should open your own topic or try firebug or have a search on google.
I’m still trying to find a solution to my problem, any takers?
By using firebug and a bit of google. Just post this in your theme’s css file:
#jp-carousel-comment-form,.jp-carousel-commentlink,.jp-carousel-buttons,{display:none;margin:0;padding:0;border:none;} .jp-carousel-left-column-wrapper,.jp-carousel-image-meta{display:none;margin:0;padding:0;border:none;}
The first is for hiding the comments and deleting the space, the second is for hiding the little box on the right.
Do you know how to center the images?
Forum: Plugins
In reply to: [Yoast SEO] SEO Boxes for each page have disappearedi had the same issue but found a workaround:
i disabled a few lines by putting /**/ around them. so it looks like that:
/*
.wpseotab {
display: none;
}
*/
you can find it in your filemanager here:
…/plugins/wordpress-seo/css/metabox-tabs.css
it was in line 50 for me.its just a workaround i suppose but at least it lets me change the seo as usual. I hope it gets fixed properly soon.
Forum: Plugins
In reply to: [Yoast SEO] Did WP 3.5 kill this plugin?I had the same problem and managed to get it back by putting /**/ around the following lines to disable the, so it looks like that:
/*
.wpseotab {
display: none;
}
*/
you can find it in your filemanager here:
…/plugins/wordpress-seo/css/metabox-tabs.css
it was in line 50 for me.its just a workaround i suppose but at least it lets me change the seo as usual. I hope it gets fixed properly soon.
I am not sure if you have tried that already but I have an option in my WordPress Dashboard called “Store Sales”. There it gives me a list of all buyers and if I click on the name it shows what they filled out in the checkout form.
Hope that helps.would like to know the same thing. I need a few custom text fields for each product i have. Is there any way to get that?
Hey,
i had the same issue. You will have to change something in the php file:
1. Pls open the wp-ecommerce/wpsc-includes/ajax.functions.php
2. go to line number 468, you can see the below php code.if (get_option('do_not_use_shipping') == 0 && ($wpsc_cart->selected_shipping_method == null || $wpsc_cart->selected_shipping_option == null)) { $_SESSION['wpsc_checkout_misc_error_messages'][] = TXT_WPSC_PLEASEASELECTSHIPPINGMETHOD; $is_valid = false; }
3. Put two // in front of each line, it will mark them as comment and remove the message from your checkout page.
Btw, I am trying to hide the shipping calculator myself. Could you tell me how you have done this?
Thanks,
JenForum: Networking WordPress
In reply to: subdomain multisite – permalinks not working anymoreoh i’m sorry, didnt know. At least some of us are getting sunshine ??
yes, thats all. and it has the right name and its in the right folder. Im with 123-reg, unfortunately. would never recommend them, they are a pain. but I’ll check with them. thanks for the tip.Forum: Networking WordPress
In reply to: subdomain multisite – permalinks not working anymoreHi Mika,
do you have any other idea?
its been really bugging me but I cannot find the problem. But all partners and links that are linking to posts and pages on my site have contacted me now saying that their links dont work.
is there really no way of getting postname to work?
Thank you!Forum: Networking WordPress
In reply to: subdomain multisite – permalinks not working anymoreok, i took the first and last directory bit out, but its still not working when I try to choose postname.
I also had a look at the permalink structure setting in my network admin settings but the field is empty. is that ok? i did try it with /%postname%/ but it didnt make anything better.Forum: Networking WordPress
In reply to: subdomain multisite – permalinks not working anymoremh…not too sure to be honest. I think i didnt have it after installing multisite but at some point it ended up like it. You think I should take the “<Directory …>” bits off and see? Ill try and let you know.
Forum: Networking WordPress
In reply to: subdomain multisite – permalinks not working anymoreHi Mika,
thanks for your quick reply. Looking for solutions I should have known thtat you need my htaccess text. Here it is:
<Directory "/Library/WebServer/Documents"> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </Directory>