potentdevelopment
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Easiest way to translate.You can add a custom field for the translation part then in your loop put the Dutch part in a data attribute, use jQuery to on click of Dutch flag or whatever, find all the data attribute and then swap out back and forth between english and dutch. Use a cookie if you need persistence. I did this for a client of mine.
Forum: Fixing WordPress
In reply to: Please help! Changed URL and can't see my Dashboard anymoreYou get there via your database access. Use your PHPMyAdmin.
Forum: Plugins
In reply to: Automatic order printingYour going to have to look for some API service that you can hook into and then most likely run a cron job to send the info to your fax.
Forum: Fixing WordPress
In reply to: redirect to page after registeredIf the user is creating an account, then use this: https://codex.ww.wp.xz.cn/Plugin_API/Action_Reference/user_register
If they already have an account and logging in, use the one I sent you earlier. Your going to have to create a plugin use the two filters and do a PHP redirect. If the last page they came from changes, then you can can store the data in cookies or sessions and then pull that info and redirect them back.
Forum: Fixing WordPress
In reply to: Please help! Changed URL and can't see my Dashboard anymoreGo into your database into wp_options table. Change the url in option names: siteurl and home
Forum: Fixing WordPress
In reply to: redirect to page after registeredHere is the hook API for authentication. https://codex.ww.wp.xz.cn/Plugin_API/Filter_Reference/authenticate
Your going to have to write in your functions some logic like:
if success then redirect to where you want to send them
else
throw error saying they need to login correctly.Forum: Plugins
In reply to: Automatic order printingFound this on Stack Overflow: http://stackoverflow.com/questions/5195842/receipt-printer-print-automatically-when-someone-placed-an-order
Pretty much it sounds like your going to need to build a desktop app using C# for windows, Swift / Objective C for Mac, run a check on the database like every minute and if orders exist, push the order to the printer and print.
Forum: Themes and Templates
In reply to: [Virtue] Add to cart not workingIts seems to be working for me. I add three products and the total on the top right totaled correctly. Can you be more specific?
Forum: Themes and Templates
In reply to: WordPress Theme resetWhen you rename the directory of an already installed and configured theme, WordPress sees it as a new theme. Instead of renaming the theme, create a child theme of Zerif Lite and add your modifications.
Forum: Themes and Templates
In reply to: Recommendation for new site?Not one of the free ones, but there are plenty of premium themes and plugins to do what your looking for. I won’t post the links on here since I’m not 100% sure on the policy linking to outside sites.