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 getCurrentUserAllFormEntries() | |
{ | |
$query = wpFluent()->table('fluentform_submissions') | |
->select([ | |
'fluentform_submissions.id', | |
'fluentform_submissions.form_id', | |
'fluentform_submissions.user_id', | |
'fluentform_forms.title', |
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
body.single-post .post-entry-content.content { | |
span,p{ | |
font-size: 16px; | |
color: #252A31; | |
} | |
} | |
.rtl{ | |
.whats-included2-left { |
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
body.single-post .post-entry-content.content { | |
span,p{ | |
font-size: 16px; | |
color: #252A31; | |
} | |
} | |
.rtl{ | |
.whats-included2-left { |
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
body.single-post .post-entry-content.content { | |
span,p{ | |
font-size: 16px; | |
color: #252A31; | |
} | |
} | |
.whats-included2-left { |
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
body.single-post .post-entry-content.content { | |
span,p{ | |
font-size: 16px; | |
color: #252A31; | |
} | |
} |
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
body { | |
.elementor-icon-box-title, .elementor-icon-box-description , .elementor-widget-container , .elementor-text-editor,.elementor-image-box-title , .elementor-heading-title, .elementor-image-box-description { | |
text-align: left !important; | |
} | |
} | |
html[lang="ar"] body { |
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
body { | |
.elementor-icon-box-title, .elementor-icon-box-description , .elementor-widget-container , .elementor-text-editor,.elementor-image-box-title , .elementor-heading-title, .elementor-image-box-description { | |
text-align: left !important; | |
} | |
} | |
html[lang="ar"] body { |
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
html[lang="ar"] body { | |
.elementor-icon-box-title, .elementor-icon-box-description , .elementor-widget-container , .elementor-text-editor,.elementor-image-box-title , .elementor-heading-title, .elementor-image-box-description { | |
text-align: right !important; | |
} | |
} | |
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
/** | |
* | |
* https://jonlabelle.com/snippets/view/javascript/calculate-mean-median-mode-and-range-in-javascript | |
*/ | |
// | |
// Calculating the average/mean | |
// https://www.sitepoint.com/community/t/calculating-the-average-mean/7302/3 | |
// | |
/** |
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
const fs = require("fs"); | |
const mkdir = (dir) => { | |
if (!fs.existsSync(dir)) { | |
fs.mkdir(dir, (err) => { | |
if (err) throw err; | |
console.log("Folder has been created successfully"); | |
}); | |
} else { | |
console.log("Directory Exists"); |