Posts

Showing posts with the label WordPress

How To Embed Image from Google Drive to Your Website Like WordPress, Blogger, and or HTML Pages

Image
As a blogger, you should always consider the importance of having a good quality of image being embedded on your blog or any kind of website that uses image to attract more of their visitors, and one of the main problems of a newbie blogger of any Blog platform such as the WordPress is the size of the image, because as we all know that the higher quality of the image the higher the size it will be which will use up your hosting most especially to those blogger who only use shared hosting. So in this tutorial, we will guide you on how you can actually insert the uploaded image from Google Drive  to your website using only a simple HTML code which is very easy to do, so below will be the step by step guide on how you can actually do it. Step #1: Log-in your Gmail account and go to  https://drive.google.com/  where you need to upload the image you want. Step #2: Once you have done uploading the image you just need to get the ID of the image by simply do a right-click ...

Add Menu or Remove Menu Link on Woocommerce My Account Page

Image
This tutorial is rarely found on the Search Engine that is why we made a quick guide how you can actually customize your MY ACCOUNT Page of your Woocommerce websites such as Remove Menu  or Add Menu with Links  using only the functions.php  file, so it means no plugin involves, it is useful especially when your client wanted you to add a specific menu that is why we have this tutorial for you. As you can see on the video it has a quick explanation of how to use the code, so just follow the tutorial video above made by Kazuki Tech and then just copy the code we have included here. How To Remove Menu on My Account? add_filter ( 'woocommerce_account_menu_items', 'misha_remove_my_account_links' ); function misha_remove_my_account_links( $menu_links ){ unset( $menu_links['edit-address'] ); // Addresses //unset( $menu_links['dashboard'] ); // Remove Dashboard //unset( $menu_links['payment-methods'] ); // Remove Payment Methods //unset( $menu_links[...

Pass Inputted Values from Form 1 to Form 2 Using Contact Form 7

Image
Submit data from one form to other form contact form 7 Pass Values From One Form To Another with Contact Form 7 Dynamic Text Extension How To Get Value from the first Form to Another Form Contact Form 7 This tutorial is created by BRYIZZ07 Tutorial which gives you a simple solution how you can pass value from 1 form to 2nd form. So for example you have to pages to use for your 2 forms, and this are; yoursite.com/form1 and yoursite.com/form2 Form 1: In the first form, you will need a non-contact form 7 form built in html so it should look like this below. <form class="form-inline" action="/form2/" method="GET"><label class="sr-only" for="inlineFormInputName2">Postcode</label> <input id="inlineFormInputName2" class="form-control mb-2 mr-sm-2" name="post_code" required="" type="text" placeholder="Enter Your Postcode" /> <button class="btn btn-prim...

Real Estate 7 "Warning: Cannot assign an empty string to a string offset"

Image
screenshot from ThemeForest Are you one of the devs or company which is using the Popular real Real Estate 7  in WordPress, well you might also face an issue about an error that looks like this below. "Warning: Cannot assign an empty string to a string offset —  class.wp-scripts.php " We write this article to help those who is currently facing the issue so what we do is locate the error line from class.wp-scripts.php  and make sure you replace it with the following code. Original Code: /*$l10n[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );*/ Replace with this Code: if (!empty($value)) { $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8'); } also, make sure that you are using a PHP version 7.0 or 7.1 and above so you can enjoy using this theme RE7 without any problems, and also before you start installing the demo of the themes make sure that you activate all the suggested plugins mention on the theme. Booking Calend...

How to Remove URL Text Field on WordPress Default Comment Box?

Image
This is one of the common question for every blogger which is using the WordPress CMS platform for blogging, and by default it has 4 field in comment section below each post (Name, Email, Website, and Comment). Now as we all know that not all users or visitors got a personal website so some blogger asking "How to Remove the Website Text Field on WordPress". Just copy the code below; add_filter('comment_form_default_fields', 'remove_url');  function remove_url($fields)  {  if(isset($fields['url']))  unset($fields['url']);  return $fields;  } and add this code to your functions.php, go to your WordPress backend area, and click Themes>Editor and look for the function.php and paste the code then that's it.