Tsun4Ever
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Multi Site and Single Global CartYes i guess if i would have to use only your plugin shopping cart, i will have to develop myself everything else regarding the products, the shops, the shipping, the taxes, etc…
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] Use on membership siteHi Matthias,
i have contacted you for a business request trough your contact page website
Hope you received it
Thanks- This reply was modified 7 years, 10 months ago by Tsun4Ever.
Forum: Plugins
In reply to: [Bugerator] Attachement not showingnot sure to understand your question,
it is installed in the plugin folder
can i send you a pm to send you the url ?Forum: Plugins
In reply to: [Bugerator] Attachement not showingHi,
thanks for your reply,
my wordpress bundle is free of any other plugin, i was jsut trying to set an environment to test your plugin.Forum: Plugins
In reply to: [Slider CAPTCHA] Can't see the slider on wp-login.phpHi
same issue here – any updates on this please ?
Forum: Plugins
In reply to: [Broadcast] Stopping a page broadcastingok got it, thks for the quick reply
Hi
same here, none of the links provided by the plugin is working anymore since last version
unsubscribe, edit and view newsletter in browserany updates please ?
thanks
Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] Price for 1 KG ???Hi, thanks for your answer.
Actually this is not my configuration.
they do not have a fixed ratio between the weight step of 0.5Kg, so this solution does not fit.Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] Price for 1 KG ???Hi
im facing the same situation, meaning i have to use this kind of range, except that my client has 6 zones with the 40 weight range (0 to 20Kg by step of .5Kg)
So in total there will be around 6*40=240 configurations,…hmmm…i don t want to handle this manually – is there a way to import a sort of csv file somewhere to do that ?
thanks
Forum: Plugins
In reply to: [WP-Members Membership Plugin] User data not savedi just fixed my code in the user_register hook function (i was doing db insert in my plugin tables)
if you are using a user_register hook, try to comment this code first to see wethe it comes from here
Forum: Plugins
In reply to: [WP-Members Membership Plugin] User data not savedHi, problem solved on my side
i was hooking the ‘user_register’ action and performing task that was giving error
now it is ok on my side
good luck
same issue there since upgrade with WP 3.9
kind of stuck to manage the website images and slider.Where can we find the previous version of Nextgen please ?
Forum: Plugins
In reply to: [Custom Content Type Manager] Repeated fields tableok i see, i had a look to the video and i get the idea on how to customize thos HTML customs fields.
Thanks for this.Forum: Plugins
In reply to: [Custom Content Type Manager] Repeated fields tableHi fireproofsocks,
thanks for your reply, appreciate that you take on your time.
this is not what i mean.
a portfolio is a list of assets.
so in my portfolio i want to be able to manage a kind of table of assets belonging to this portfolio.
So i’m looking to do something like that in the portoflio custom post type from a admin point of view :Assets table
Col 1 | Col 2 | Col 3
Asset name picked up in all the assets list | Acquisition date | Invested Amountwith the ability to add / delete row of data
From the frontend point of view, we want to be able to display freely this table.
Is it more clear maybe ?
Forum: Plugins
In reply to: [Q and A FAQ and Knowledge Base for WordPress] Active or current classno problem ??
actually, a better code will be this one :
$('a.qa-faq-anchor').on('click', function(event) { if (!$(this).hasClass('active')) { $('a.qa-faq-anchor.active').removeClass('active'); } $(this).toggleClass('active'); });
to take in account the case where there is only one category and the case where the user is clicking on an open category.