jaumerrr
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Grouped products broken after updating Woocommerce. BiG problemseems that the upgrade didn’t do its job and did not fix the grouped products and left them with old system.
Someone has an upgrade path to update them and fix my problem?
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Grouped products broken after updating Woocommerce. BiG problemnobody is working with grouped products ???
Forum: Plugins
In reply to: [Key4ce osTicket Bridge] Adding v1.10 compatibility?Any update on 1.10 compatibility?
As someone mentioned before, having just the database integration ( user login/password ) would be enough for most people. Is there a quick way you could provide that only and not have to wait for complete plugin?
Thanks !!!
Forum: Plugins
In reply to: [WooCommerce] Link all Variations bugHave the same problem. Also if you have many variations , once you save the product … many variations do not save the price and the image, and also the category product is lost.
Forum: Plugins
In reply to: [WooCommerce] Include SKU in the products permalink urlNever mind, I have desisted to try matching the urls and opted for a 301 RedirectMatch so now each product with prestashop url is redirected to corresponding product in woocommerce.
Forum: Plugins
In reply to: [WooCommerce] Include SKU in the products permalink urlForgot to say that I want to do this beacuse I am migrating from Prestashop to Woocommerce and i want to preserve the same exact URLS for products, not to have broken links all over and to preserve SEO.
I have done some progress and managed to get the custom url I want for the products, exact same ones as in a default Prestashop install. Now my product urls in woocommerce are the same, but problem I have now is that I get 404 error so i’m stuck again … probably will need more hacks…
Here’s the function I have created to match the prestashop links … can someone help to make the urls work now? … thanks.
function append_sku_string( $link, $post ) { $post_meta = get_post_meta( $post->ID, '_sku', true ); if ( 'product' == get_post_type( $post ) ) { // $link = $link . '/' .$post_meta; $parteslink= explode("/", $link); // http://domain.com/shop/product-category/SKU-product-name.html $link = $parteslink[2].'/'.$parteslink[3].'/'.$parteslink[4].'/'.$post_meta.'-'.$parteslink[5].'.html'; return $link; } } add_filter( 'post_type_link', 'append_sku_string', 1, 2 );Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work anymoreI am also using the standart .htaccess generated by wordpress.
My wordpress site is in root folder, and phpBB3 in a subfolder.
Can you please tell us what do we have to review/change in the .htaccess to make it work?
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work anymoreI just tested it today, and it doesn’t work for me in wordpress 3.7 and phpbb 3.0.8 … plugin in wordpress seems to do its job.
Once I activate the plugin my wordpress ite goes offline ( all pages to the wordpress 404 page ). On that page, I can login … and login seems to work good, i’m redirected to the phpbb forum looged in with the correct user, but wordpress sites keeps all redirected to 404 and asking login again … so it isn’t working on the wordpress site.