Skip to content

Instantly share code, notes, and snippets.

View smtechno's full-sized avatar

FaizAlias smtechno

View GitHub Profile
@smtechno
smtechno / mlmdummylist
Last active August 27, 2022 15:11
MLM dummy list
<center><div class="et_pb_text_inner"><div class="et_pb_text_inner"><!DOCTYPE html></p>
<h5 class="pb-3 animated"><strong>Ahli Terkini</strong></h5>
<p class="mbr-text animated"><marquee onMouseOver="this.stop()" onMouseOut="this.start()" scrollamount="3" scrolldelay="10" direction="down" width="350" height="350" align="center"> </p>
<table border="0" cellspacing="0" width="220" cellpadding="2"><font size="1" face="Tahoma" ></p>
<td width="15%" height="5" align="left" ><border="0" height="9"><font face="tahoma" style="font-size: 8pt" color="#0a0a0a"><img src="https://www.i-rakanniaga.com/wp-content/uploads/2022/08/johor.jpg"><br /> <strong>Madzlan bin Mohd Din</strong> :: Tue,10,Jan,2022 </td>
</tr>
<td width="15%" height="5" align="left" ><border="0" height="9"><font face="verdana" style="font-size: 8pt" color="#0a0a0a"> <strong><strong></td>
</tr>
</tr>
<td width="15%" height="5" align="left" ><border="0" height="9"><font face="tahoma" style="font-size: 8pt" color="#0a0a0a"><img src="https://www.i-rakannia
@smtechno
smtechno / lastdateastratheme
Created April 13, 2022 14:37
Last Date Untuk Astra Theme
/*-----last update date code for Astra Theme only-----*/
function your_prefix_post_date( $output ) {
if ( 'post' === get_post_type() ) {
$the_time = get_post_time( 'His' );
$the_modified = get_post_modified_time( 'His' );
$last_modified = sprintf( __( 'Last updated %s', 'astra' ), esc_html( get_post_modified_time( 'M j, Y' ) ) );
$published = sprintf( __( 'Published on %s', 'astra' ), esc_html( get_post_time( 'M j, Y' ) ) );
$date = $the_modified !== $the_time ? $last_modified . ' | ' . $published : $published;
/*-----youtube video responsive embed by minutesguide.com-----*/
add_theme_support( 'responsive-embeds' );
@smtechno
smtechno / Forcing HTTPS on a Specific Folder
Created November 13, 2020 10:26
Forcing HTTPS on a Specific Folder
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(folder1|folder2|folder3) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
@smtechno
smtechno / Forcing HTTPS on a Specific Domain
Last active November 13, 2020 10:21
Forcing HTTPS on a Specific Domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain1.com [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
@smtechno
smtechno / Force SSL On All Traffic
Last active November 13, 2020 10:02
Force SSL for htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
@smtechno
smtechno / Image Shadow
Last active March 10, 2022 23:28
how to add image shadown on wordpress
.minutes-guide-image-shadow {
box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.35) !important;
}
@smtechno
smtechno / After Add Title
Created May 17, 2019 16:29
After add title
<a title="TULIS TAJUK DI SINI" href="https://www.blogfaiz.com">Berkarya Untuk Berkongsi</a>
@smtechno
smtechno / Before Add Title
Created May 17, 2019 16:27
Normal link before add title
<a href="https://www.blogfaiz.com">Berkarya Untuk Berkongsi</a>