Posts

Showing posts with the label wordpress

Enable Jetpack on Amazon Bitnami Wordpress using XMLRPC

 How to Enable Jetpack and Wordpress Connection in Amazon bitnami First step is to Allow xmlrpc.php or you will get a 403 forbidden error. Steps: cd /opt/bitnami/ sudo vim ./apache/conf/vhosts/wordpress-vhost.conf ./apache/conf/vhosts/wordpress-https-vhost.conf find this part:     <Files xmlrpc.php>     Order Allow,Deny     Deny from all     </Files> change it to:     <Files xmlrpc.php>     Order Allow,Deny     Allow from all     </Files> Restart your bitnami services Optional Steps  sudo apt-get update  sudo apt-get install php-xmlrpc  sudo cp /usr/lib/php/20220829/xmlrpc.so /opt/bitnami/php/lib/php/extensions  ls -al /opt/bitnami/php/lib/php/extensions  sudo chmod 755 /opt/bitnami/php/lib/php/extensions/xmlrpc.so   ls -al /opt/bitnami/php/lib/php/extensions  sudo /etc/init.d/bitnami stop  sudo /etc/init.d/bitnami start

Changing the Wordpress Avada Theme Copyright Line to Brand Your Website

Image
How to Change the Wordpress Avada Theme Copyright Line Are you a website developer and are using an Avada theme in Wordpress?  Welcome to the club. Lots of us are asking how to rebrand the site with your own company name and remove the Avada copyright legend. If you are a professional web developer you may want to tag your company at the bottom with a "Website Design By" tag. This will get you one more backlink too. Brand your website or add a link on your website, to remove the Wordpress and Avada branding. Add your own link and name. Here's a handy how to guide to do it. First Step is to Click on the Avada menu on the left, then find the Layouts button.  Choose Layouts, not Layout.  These are different menus. First Step: Layouts Second Step:  Find the Avada Layout Builders page; Find the Global Layout, then the Global Footer Then Find the 2nd Container Find the Avada Menu, then find the global Footer menu Then find the Date item in the lower section. Edit the Date,...

How to Integrate ShareASale with Wordpress WP-Members

Image
 How to Use ShareASale to Track New Leads in WP-Members You can track membership requests in WP-Members with ShareASale, treating each new membership signup as a 1.00 transaction.  It's very easy using WP-members registration post data array upon signup.  The first thing to do is to add the header code in your theme's header.php file. That's easy enough. Finally, add the tracking img code into:  class-wp-members-shortcodes.php.  This will activate if you are using shortcodes to signup new members.  Example:  [wpmem_form register]   will show the registration form on your pages.   Finally, you must add the tracking img code into your successful signup page. WP-members will drop into this page  class-wp-members-shortcodes.php in this logic block starting with case in_array( 'register', $atts ):  The key to all of this working is to find the lead-id from  $wpmem->user->post_data['display_name'] and use it as the...

Wordpress Showing Insecure Icon in Address Bar When Using https

Image
Wordpress Site Shows Insecure Icon in Browser Address Bar When Using https Here's a common scenario: you build a new wordpress site, and then decide to turn on https after it's fully built, as a result some of your image assets are still referenced with http vs https.  Chrome and Firefox will show "insecure" when they are loaded.  This is how to change that broken lock symbol to a closed lock symbol. How to Fix There are add-ons that will try to fix this or you can use URL re-writing, or you could edit the SQL database records and change all http to https.  My preferred method is to dump the WP_POSTMETA and WP_POSTS tables from the Wordpress SQL database, then edit the dump files with vim, then load them back in. The Easy Way Open wp-config.php with an editor such as VIM. Change these lines: Change the http to https to force https mode. The Hard Way - Dump The Tables Dump the Tables The dump Files Using VIM to edit Use this VIM command ...

Wordpress wp-members customization - login failure message

Image
How to Change the Message Displayed to Users When They Logon to WP-MEMBERS pages The default link shown to users when they fail to logon is just URL/wp-profile which is just plain stupid. You can change it to a custom logon page. You will be editing these files: dialogs.php , class-wp-members.php and  api-forms.php full paths: ./wp-content/plugins/wp-members/includes/api/api-forms.php ./wp-content/plugins/wp-members/includes/class-wp-members.php ./wp-content/plugins/wp-members/includes/legacy/dialogs.php Step1: Add a handler in api-forms.php If you have a php file called login.php then it will show this link in the failure message. Add this near the bottom of the file. ...append this function to the end of api-forms.php... 1 2 3 4 5 6 7 8 9 10 11 12 function my_login_failed_msg ( $ str ) { // The generated html for the login failed message // is passed to this filter as $str and includes the // formatting tags. You can change it or ap...

Build Up Your Backlinks with Press Releases and Blog Listing Services

How to Build Up Your Backlinks with Press and Blog Listings Whether you have a blog or a website, here are some resources for building up your backlinks to help you get a higher rating on google. USA Chamber of Commerce Get a free business listing at the USA Chamber of Commerce.  For a small fee, you can upgrade and post links in your profile.  With the upgrade, you can publish a little HTML in your profile to make it stand out more.  You can also post a story in the news area as well.  Join the Chamber , you will love it. Feedspot - Build Backlinks for Your Blogs Anuj Agarwal's list of top information technology blogs. His IT Tech blog shows content from the top IT bloggers worldwide. You can find any manner of tech info in these 40 blogs.   https://blog.feedspot.com/it_ blogs/   Get your blogs backlinked in his list of blogs. Market Press Release One free press release per day with the free plan.  These are completely free, as in ...

10 Must Have Wordpress Plug-ins

Image
A List of 10 of the Most Important Wordpress Plug-ins Here's a List of the most important plug-ins to make your wordpress site stand out from the crowd 1. SEO Plug-ins 2. Responsive menu Plug-ins

Install SSL Certificate on Amazon Bitnami Wordpress Website

Image
How to Get A Free SSL Certificate and How to Install It SSL Certificates Should Be Free For Everyone Let's Encrypt and SSL For Free are two of the most famous free SSL services out there, with your new Amazon EC2 Bitnami Wordpress virtual machine, you now need an SSL Certificate. Get your free certificate at SSL4Free.com , install it like a boss the hardway using the SSH command line.  In our knowledge base story regarding 31 Tips for Your First Business Website , our advice is to install an SSL Certificate immediately.  Amazon EC2 Bitnami Wordpress is another great way to get a free website, free of hosting charges. We have a list of free hosting options here . You must run it on the free tier. Breaking News for June 2020 SSL For Free is retired and now obsolete.  It has been bought out by comodo. You can only get 3 free certs now.  My recommendation is to use Certbot to automate your certificate renewals thru lets' encrypt. Here's a great how to guide for Amaz...