VVTinho
Forum Replies Created
-
Hi!
I am also facing the same issue, the plugin is not working correct π
Forum: Hacks
In reply to: WordPress jQuery shortcodesHi!
You: Additionally, if you want the currently visible div to go away when another button is clicked, you need to first set all element’s styles to display: none; before calling .show()
I have tried to set all elements styles to display:none; before calling .show, but Its not working.
Can you please help me with some code examples, thanks?Forum: Plugins
In reply to: [Easy Fullscreen Slider] Text on slider imagesHi!
Why is caption and link text not working?Hi!
Always visible” areas, when is it coming to the Pro version?
Forum: Plugins
In reply to: [Shatner - Name your Own Price Integration for WooCommerce] Not workingNot working…
Forum: Plugins
In reply to: [Join My Multisite] Activation ErrorSorry, I fixed my problem:
It was a bad function in my functions.php file…
Forum: Plugins
In reply to: [SharDB] Migrate SitesHi!
Ok, thanks, I solved the problem I had π
Forum: Plugins
In reply to: [Contact Form 7] autopopulate form fields with inserted valueHi!
Im refering to Contact form 7 dynamic text extension plugin…
I have solved the problem by building my own plugin.
If you are interested in knowing how my plugin works, I can send it to you.Forum: Networking WordPress
In reply to: The Best way to Redirect my homepage in MultisiteHi!
You can use the code bellow:
function wpsites_redirect_ms_front_page() { if ( is_main_site() && is_front_page() ) { wp_redirect( 'http://www.example.org/news/', 302 ); exit; } } add_action( 'template_redirect', 'wpsites_redirect_ms_front_page' );Forum: Networking WordPress
In reply to: Redirect main blog sitePut this code in functions.php:
function wpsites_redirect_ms_front_page() { if ( is_main_site() && is_front_page() ) { wp_redirect( 'http://main-site/wp-login.php', 302 ); exit; } } add_action( 'template_redirect', 'wpsites_redirect_ms_front_page' );Forum: Networking WordPress
In reply to: Subscriber user enable plugin and theme uploadsHi!
OK, I understand thanks…Forum: Plugins
In reply to: [SharDB] Migrate SitesPlease, some help on getting the plugin to work, thanks…
Forum: Plugins
In reply to: [SharDB] Migrate SitesHi!
Ok, I understand, thanks…
where can I find a installation guide for VIP DB configuration to use a separate DB for each site?
Do I have to manually install the new VIP DB databases?Is not a local development im running, and I always get this error:
Canβt select databaseWe were able to connect to the database server (which means your username and password is okay) but not able to select the wp_global database.
Are you sure it exists?
Does the user root have permission to use the wp_global database?
On some systems the name of your database is prefixed with your username, so it would be like username_wp_global. Could that be the problem?Thanks