This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="soltuin-card soltuin-whatsapp"> | |
<a href="https://api.whatsapp.com/send?phone=524491234567"> +52 (449) 123-4567</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Divi cart icon left to burger menu */ | |
#et-top-navigation { | |
display: flex !important; | |
flex-direction: row; | |
justify-content: flex-end; | |
width: 100%; | |
} | |
a.et-cart-info { | |
text-align: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="et-social-icons"> | |
<li class="et-social-icon et-social-facebook"> | |
<a href="" class="icon"> | |
<span>Facebook</span> | |
</a> | |
</li> | |
<li class="et-social-icon et-social-twitter"> | |
<a href="" class="icon"> | |
<span>Twitter</span> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 980px) { | |
#et-secondary-menu { | |
display: block !important; | |
} | |
}@media (max-width: 767px) { | |
#et-secondary-menu .et_duplicate_social_icons { | |
float: left; | |
} | |
#top-header .et-cart-info { | |
float: left; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
jQuery(function($){ | |
$('.et_pb_toggle_title').click(function(){ | |
var $toggle = $(this).closest('.et_pb_toggle'); | |
if (!$toggle.hasClass('et_pb_accordion_toggling')) { | |
var $accordion = $toggle.closest('.et_pb_accordion'); | |
if ($toggle.hasClass('et_pb_toggle_open')) { | |
$accordion.addClass('et_pb_accordion_toggling'); | |
$toggle.find('.et_pb_toggle_content').slideToggle(700, function() { | |
$toggle.removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.et-social-facebook a.icon:before { | |
content: "\xxxx"; | |
font-family: "Font Awesome 5 Brands"!important; | |
} | |
.et-social-twitter a.icon:before { | |
content: "\xxxx"; | |
font-family: "Font Awesome 5 Brands"!important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Utility function to print to log file when using Ajax | |
* | |
* Log Location: /wp-content/debug.log | |
* | |
* Remember to enable Debug Log in the wp-config.php file: | |
* | |
* define ('WP_DEBUG_LOG', true); | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//https://www.tutorialfor.com/questions-92660.htm | |
Install MailCatcher | |
Try entering the following command in the terminal. | |
* Do not enter the leading $. It's like rules for writing code | |
$sudo gem install mailcatcher | |
Installation will be completed after a while. Next, start MailCatcher. |