andromanfro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sydney] Adding Title and Call to Action button in Video HeaderFantastic, all seems ok now!
All the best,
AndreaForum: Themes and Templates
In reply to: [Sydney] Adding Title and Call to Action button in Video HeaderHi Kharis, the url is editnapoli.com (pwd: editnapoli)…
Regards,
AndreaForum: Themes and Templates
In reply to: [Sydney] Adding Title and Call to Action button in Video HeaderThank you!
I inserted your second code (the one for the two buttons but in homepage only):(function($){ "use strict" if( $('body').hasClass('home') ) { var mainTitle = 'Maintitle goes here'; var subTitle = 'Subtitle goes here'; var buttonURL = '#'; var buttonLabel = 'Click to begin'; var heroContent = '<div class="slide-inner">'; heroContent += '<div class="contain text-slider">'; heroContent += '<h2 class="maintitle">'+mainTitle+'</h2>'; heroContent += '<p class="subtitle">'+subTitle+'</p>'; heroContent += '</div>'; heroContent += '<a href="'+buttonURL+'" class="roll-button button-slider" target="_top">'+buttonLabel+'</a>'; heroContent += '</div>'; $('.sydney-hero-area').append(heroContent); } })(jQuery);Forum: Themes and Templates
In reply to: [Sydney] Adding Title and Call to Action button in Video HeaderHi, same issue here, copied and pasted the JS code in the plugin but nothing appears…
Any help would be much appreciated as usual.
Regards,
AndreaForum: Networking WordPress
In reply to: Error on Multisite ConfigurationSolved!
I found that here they said to insert “public_html” as root folder… That was the problem…!
AndreaForum: Networking WordPress
In reply to: Error on Multisite ConfigurationHi Pavel!
I added the A Records pointing to the IP of the WordPress I saw in the cPanel…
I forgot to give you the content of my 2 files I modified following the procedure…:
– htaccess
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
# END WordPress– wp-config.php
define(‘WP_DEBUG’, false);
define( ‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘mydomain.org’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
/* That’s all, stop editing! Happy blogging. */Thank you,
Andrea
- This reply was modified 8 years, 11 months ago by andromanfro.