Tiny Code
Forum Replies Created
-
Forum: Plugins
In reply to: [TC Custom JavaScript] Upload button placementSorry, I was misunderstand. The topic title made me confused.
I will re-design the plugin to make it easy to use.
If you try to move the button “Update”, you have to make sure the button is placed inside the <form> tag
Forum: Plugins
In reply to: [TC Custom JavaScript] Upload button placementHello there,
Please share your website url
Forum: Plugins
In reply to: [TC Custom JavaScript] Hide menuYes, it should works. But you have to use jQuery instead of $ because the short form of jQuery ($) will conflict with WordPress codes
Forum: Plugins
In reply to: [TC Custom JavaScript] Hide menuYou should try function jQuery hide()
https://api.jquery.com/hide/Forum: Plugins
In reply to: [TC Custom JavaScript] WordPress 5.7Yes, it’s compatible with WordPress 5.7!
Forum: Plugins
In reply to: [TC Custom JavaScript] Will this be updated?Now I am quite busy with other products so I can not update new features for this plugin. But if it has issue reports then I will update new patched version.
Forum: Plugins
In reply to: [TC Custom JavaScript] CrackedThe JavaScript is stored in table ‘options’, please try to query by key ‘tccj_content’
Forum: Plugins
In reply to: [TC Custom JavaScript] CrackedPlease update to the latest version (version 1.2.2) then clean your custom JS code.
Forum: Plugins
In reply to: [TC Custom JavaScript] javascript disappearedSorry for late reply.
The JavaScript is stored in table ‘options’, please try to query by key ‘tccj_content’Forum: Plugins
In reply to: [TC Custom JavaScript] 1.2 Update Messing Up CodeAfter updating the plugin, please correct your code again and it will work. Sorry for this inconvenience.
Forum: Plugins
In reply to: [TC Custom JavaScript] 1.2 Update Messing Up CodeThank you for letting me know this bug. It has been fixed in the latest version.
Forum: Plugins
In reply to: [TC Custom JavaScript] WordPress Tested up to: 4.8.9I have updated. Now it tested up to 5.2.3!
Thank you for supporting!Forum: Reviews
In reply to: [TC Custom JavaScript] Great Plugin and great supportYou’re welcome!
Forum: Plugins
In reply to: [TC Custom JavaScript] Changes don’t work on my pageThe theme which you using is hard to custom. It use JS to set absolute position.
Forum: Plugins
In reply to: [TC Custom JavaScript] Changes don’t work on my pageif(itemCount < 5 && itemWidthTotal < $(this).width()){ $(this).css({ max-width: 480px; margin-left: auto; margin-right: auto; 'margin-left': visibleSpace/2+'px' }); }
Please correct your code, the css should has quotes, like this:
$(this).css({ 'max-width': '480px'; 'margin-left': 'auto'; 'margin-right': 'auto'; 'margin-left': visibleSpace/2+'px' });
And the condition if(itemCount < 5 && itemWidthTotal < $(this).width()) always is false. Please check it.