I am enjoying the free version. My question is for the pro version which I am considering buying for multiple sites.
I have the need on all sites to execute shortcode through the clicking of buttons. This is not about using shortcode to display/use a maxbutton. Instead this is creating a maxbutton that when clicked, it executes a shortcode. For example, [gtranslate] shortcode will change the language of the page, and I need it to be available by clicking a maxbutton.
Thank you
]]>- Begin System Info -----
WordPress Version:5.7
PHP Version:7.4.16
MySQL Version:5.6.41
Web Server:Apache
WordPress URL:https://www.aroomstudios.com
Home URL:https://www.aroomstudios.com
PHP cURL Support:Yes
PHP GD Support:Yes
PHP Memory Limit:256M
PHP Post Max Size:516M
PHP Upload Max Size:512M
WP_DEBUG:Disabled
Multi-Site Active:No
Operating System:Windows
Browser:Mozilla Firefox 86.0
User Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0
Active Theme:
-TESSERACT 3.7.6
https://tesseracttheme.com/
Active Plugins:
-Black Studio TinyMCE Widget 2.6.9
-Column Shortcodes 1.0.1
-Contact Form 7 5.0.4
-Contact Form 7 Shortcode Enabler 1.1
-Custom Sidebars 3.31
-Duplicator 1.3.40.1
-Easy Google Fonts 1.4.3
-Formidable Forms 4.09.05
-GA Google Analytics 20210211
-HubSpot All-In-One Marketing - Forms, Popups, Live Chat 7.51.34
-Lightbox Plus Colorbox 2.7.2
-MapPress Maps for WordPress 2.58.3
-MaxButtons 8.5
-Page Builder by SiteOrigin 2.11.8
-Page Links To 3.3.5
-Page Loading Effects (Preloader) 2.0.0
-PDF Embedder 4.6.1
-Pixel Cat Lite 2.5.5
-Really Simple SSL 4.0.8
-SiteOrigin Widgets Bundle 1.17.11
-Spacer 3.0.5
-Tesseract Remove Branding 1.8.4
-The Post Grid 2.3.6.2
-Title Remover 1.2.1
-Video Slider Rich 1.3.2
-Yoast SEO 8.1.2
----- End System Info -----
]]>I tried to locate the button in the code, but I didn’t find it, can you tell me how I can do it?
]]>I used maxbutton to create a “back” button for the different posts collected in the different pages/categories of my website. The button simply send back to the post grid page.
However, now, I would like to create two buttons (previous and next post) which would let me not only to navigate through the posts, but to do it only through the ones from the same category.
Is there anyone who knows the way to do so?
Many thanks,
Michele
]]>Thanks, Steve
]]><script>
var downloadButton = document.getElementById(“download”);
var counter = 10;
var newElement = document.createElement(“p”);
newElement.innerHTML = “You can download the file in 10 seconds.”;
var id;
downloadButton.parentNode.replaceChild(newElement, downloadButton);
id = setInterval(function() {
counter–;
if(counter < 0) {
newElement.parentNode.replaceChild(downloadButton, newElement);
clearInterval(id);
} else {
newElement.innerHTML = “You can download the file in ” + counter.toString() + ” seconds.”;
}}, 1000);
</script>
Thanks
]]>