Skip to main content

Posts

Why is my website URL blocked on Facebook? How can I unblock it?

Why is my website URL blocked on Facebook? How can I unblock it? My website link was blocked by the facebook and i have review my website at debugging/feedback/reporting tools and got the below message We can’t review this website because the content doesn’t meet our Community Standards. If you think this is a mistake, please let us know . And we were 100% certain that we were not violating any “community standards” but still, every effort returned the same message as above. Solution i have contacted facebook support and facebook support unblock my website, So, please reach the live support  by take these easy steps: visit Facebook for businesses click on support on the top right corner scroll down a bit until you come across “Find answers or contact support” and click on “Get Started” choose business pages scroll all the way down to the bottom and click on “Chat with a representative” and finally, describe your problem by choosing some predefined fields and h...

bootstrap, Modal - How to get Bootstrap Modal's invoke or source element?

How to get Bootstrap Modal invoke or source element? $('#your-modal').on('show.bs.modal', function (e) {   var $invoker = $(e.relatedTarget); }); Various events of modal popup are: show.bs.modal : fired just before the modal is open. shown.bs.modal : fired after the modal is shown. hide.bs.modal : fired just before the modal is hidden. hidden.bs.modal : fired after the modal is closed. How to open a Bootstrap modal window using jQuery? $('#myModal').modal('show') // initializes and invokes show immediately Bootstrap has a few functions that can be called manually on modals: $('#myModal').modal('toggle'); You can check more documentation here https://getbootstrap.com/docs/3.4/javascript/ $('#myModal').modal('show'); $('#myModal').modal('hide');

Wordpress, Gravity form - GFCommon::encrypt() is deprecated since version 2.3! Use GFCommon::openssl_encrypt() instead.

After updating  the gravity form ,I’m receiving a few error messages: Notice : GFCommon::encrypt() is deprecated since version 2.3! Use GFCommon::openssl_encrypt() instead. in /home4/sunshine/public_html/wp-includes/functions.php on line 4435 Deprecated : Function mcrypt_get_iv_size() is deprecated in /home4/sunshine/public_html/wp-content/plugins/gravityforms/common.php on line 5399 Deprecated : Function mcrypt_create_iv() is deprecated in /home4/sunshine/public_html/wp-content/plugins/gravityforms/common.php on line 5402 Deprecated : Function mcrypt_encrypt() is deprecated in /home4/sunshine/public_html/wp-content/plugins/gravityforms/common.php on line 5402 Solution -  That indicates the reCAPTCHA field is using the old stoken integration method. To upgrade it to use the newer integration method you need to generate new reCAPTCHA api keys for your site and add them to the Forms > Settings page. That should take care of it for you.

Wordpress - Contact Form 7 notification open in popup - Bootstrap modal popup

How to add open Contact form 7 Notification / Messages in Modal popup We can use the Bootstrap modal popup and Contact form 7 Doom Events to create the popup. Paste the below code in the functions.php, it will work for you (please change the messages as per the requirements): add_action('wp_footer', 'munesh_Footertext'); function munesh_Footertext() { echo '<div class="modal fade in formids" id="myModal2" role="dialog" tabindex="-1">     <div class="modal-dialog">       <!-- Modal content-->       <div class="modal-content no_pad text-center">          <button type="button" class="close" data-dismiss="modal">&times;</button>         <div class="modal-header heading">           <h3 class="modal-title" id="MSTitle">Message Sent!</b></h3>         </div>      ...

DataTables warning: table id=table1 - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3

Issue -  DataTables warning: table id=table1 - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3 Solution - This error can often occur when trying to obtain a reference to the DataTable for working with the API. For example, you might have a function which will always try to create a DataTable instance by passing in options when created. Then you make a modification which calls this function on a table which has already been initialised and you get this error. In such a case, you will want to use the  $.fn.dataTable.isDataTable()  static method. This can be used to check if a table is a DataTable or not already: Javascript 1 2 3 4 5 6 7 8 if   ( $.fn.dataTable.isDataTable(  '#table1'   ) ) {      table = $( '#table1' ).DataTable(); } else   {      table = $( '#table1' ).DataTable( {      ...

Issue SSL Certificate from the https://cheapsslsecurity.com using the CSR

Generate SSL Certificate: go to the recent order and click on the certificate and Chose the domain validation option “Email Authentication” for this you have the access of one of the following emails: admin@yourdomain.com administrator@yourdomain.com webmaster@yourdomain.com postmaster@yourdomain.com hostmaster@yourdomain.com Input CSR (Certificate Signing Request) Select Your Server(optional) – left this as default or select “Microsoft Internet Information Server” Select the Signature Algorithm – choose SHA2 Click on the continue – this will send a verification email of the selected email in the step Verify the verification – please verification by clicking the link received in the mail Get SSL Certificate – You will receive a SSL certificate in the Mail