View style.css
This file contains 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
/* | |
* Loop Item | |
*/ | |
.member-info { | |
visibility: hidden; | |
} | |
selector { | |
transition: .6s all; | |
} | |
selector:hover .member-info { |
View style.css
This file contains 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
/*********************************** | |
* For: SaaS Website Design Tutorial | |
* By: WPAcademy.PK | |
* Info: Please use appropirate class names into the sections or widget. | |
You can change the names, just make sure you are uaing correct class name | |
in the section or widget after changing the names. | |
**********************************/ | |
.elementor-text-editor p { | |
margin-bottom: 0 !important; | |
} |
View style.css
This file contains 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
/* | |
* CSS code for WordPress Login, Signup Page Design Tutorial. | |
* Author: WP Academy | |
& Tutorial Link: | |
*/ | |
.wpac-custom-login-form #um-submit-btn , .wpac-custom-signup-form #um-submit-btn { | |
background: #242A56 !important; | |
margin-top: 15px; | |
border-radius: 0px !important; | |
} |
View styles.css
This file contains 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
/** | |
* Custom CSS code for PSD to WordPress Tutorial by WP Academy | |
* Author Name: WP Academy | |
* Author URL: https://wpacademy.pk | |
**/ | |
.wpac-service-box { | |
transition: 0.5s all; | |
} | |
.wpac-service-box:hover { | |
transform: scale(1.05); |
View style.css
This file contains 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
selector .elementor-swiper-button-prev { | |
top: -10px; | |
right: 60px; | |
left: auto; | |
} | |
selector .elementor-swiper-button-next { | |
top: -10px; | |
right:0px; | |
left: auto; | |
} |
View tml-form-design.css
This file contains 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
.wpac-custom-form ul.tml-links { | |
display: none; | |
} | |
.wpac-custom-login .elementor-section-wrap { | |
text-align: center; | |
} | |
.wpac-custom-form .tml .tml-field { | |
border: none; | |
border-bottom: 3px solid #dddddd; | |
background: transparent; |
View styles.css
This file contains 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
/****************************** | |
* Description: CSS code for advanced ecommerce website tutorial by WP Academy. | |
* Author: WP Academy | |
* Author URL: https://wpacademy.pk | |
* Usage Info: | |
Please use apporopirate class names in sections or widgets as explained in the video tutorail. | |
Don't forget to replace color variable names such as '--e-global-color-primary' with your own colors | |
or global color names. | |
******************************/ |
View learnpress-courses-grid.css
This file contains 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
/********************************** | |
* LearnPress Courses Grid | |
* By WP Academy.PK | |
**********************************/ | |
.wpac-learnpress-grid .widget-body { | |
text-align: center; | |
display: flex; | |
} | |
.wpac-learnpress-grid .widget-body .course-entry { | |
text-align: center; |
View order-tracking.php
This file contains 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
function wpac_add_query_vars_filter( $vars ){ | |
$vars[] = "order_id"; | |
return $vars; | |
} | |
add_filter( 'query_vars', 'wpac_add_query_vars_filter' ); | |
function wpac_order_status() { | |
if(is_page(1141)){ | |
$id = get_query_var('order_id'); | |
$id = intval($id); |
View learnpress-enroll-status.php
This file contains 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
<?php | |
/* | |
* Function to check if given user is enrolled into any course. | |
*/ | |
function wpac_check_enrolled_user($user_id){ | |
if (is_numeric($user_id)) { | |
//Global WordPress DB object | |
global $wpdb; |
NewerOlder