Posts

Showing posts with the label Programming

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 Center UL with DIV and Attach Image LIST in HTML and CSS

Image
Very simply, if you know basic HTML and CSS you can do it, I made this post to document myself in the future project, this is to center your list data like a justify one but in center mode, I look at other solution but luckily I see a website which has this kind of style so I made this post to help others looking a solution how to do it, as you can see on the image above the list is image with check icon and this is centered, at first glance you think it's easy, but for advance devs I'm pretty sure they already know this trick, but I just want to share this to some newbie who wants also how to do it. <div style="margin: .5rem 0 16px; font-size: .875rem; line-height: 1.28571429; text-align: center; display: block;"> <ul style="display: inline-block; list-style-type: none; text-align: left; margin: 0; padding: 0; list-style-image: url('https://nahklar.eu/wp-content/uploads/2019/01/checkmark3.png');">   <li>Unsere Mitarbeiter suchen f...

How To Create Login System Using PHP with MySQL Database FREE

Image
Most of the coders especially to a beginner the main thing when developing a web application is to start planning how the system works, what is the purpose, create visual design, plan the database for, and many more, and the next thing to do is, of course, the important part of building a web application is the LOGIN SYSTEM and REGISTRATION  so in this tutorial we will show you how to create a login code using PHP with MYSQL database using mysqli method.] **NOTE: To copy the code, please highlight the code snippet provided on this tutorial right click and copy. DB-CONFIG.PHP Create a file and name it as db-config.php  this will be useful because we are going to communicate on the database. <?php define('DB_SERVER', 'localhost:3036'); define('DB_USERNAME', 'root'); define('DB_PASSWORD', 'rootpassword'); define('DB_DATABASE', 'database'); $db = mysqli_connect(DB_SERVER,DB_USERNAME,DB_PASSWORD,DB_DATABASE);...