yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error Maximum Execution Time of 30 secondsOr
Follow this article, this will be helpful in your issuehttps://qodeinteractive.com/magazine/how-to-fix-wordpress-maximum-execution-time-exceeded-error/
Forum: Fixing WordPress
In reply to: Fatal Error Maximum Execution Time of 30 secondsHi @jeffunger20
You should try to update max_execution_time in your php.ini file
max_execution_time=30
tomax_execution_time=180
Forum: Fixing WordPress
In reply to: Post PicturesYes
Hi @z_everson
You need to put this code php.ini file not in functions.phpForum: Fixing WordPress
In reply to: SMTP ConflictHi @visionbox
You should follow this article, hope this will be helpful.
https://fluentsmtp.com/wp-forms-not-sending-email/
Thanks
Forum: Fixing WordPress
In reply to: Instagram and facebook plugin for WordPressForum: Fixing WordPress
In reply to: Jquery – how to get attribute value of specific class?Hi @michalrama
You should try like this
<strong class=”social-networks” data-margin-bottom=”Hello”>Demo
jQuery(document).ready(function( $ ){ var example = $(".social-networks").data("margin-bottom"); console.log(example); });
Forum: Fixing WordPress
In reply to: How to remove admin capability to switch themesHi @twd
You could use the built in WordPress function remove_submenu_page in a function which checked for a specific user ID. You would hook that to admin_head.
<?php function hide_menu() { global $current_user; $user_id = get_current_user_id(); // echo "user:".$user_id; // Use this to find your user id quickly if($user_id != '1') { // To remove the whole Appearance admin menu you would use; remove_menu_page( 'themes.php' ); // To remove the theme editor and theme options submenus from // the Appearance admin menu, as well as the main 'Themes' // submenu you would use remove_submenu_page( 'themes.php', 'themes.php' ); remove_submenu_page( 'themes.php', 'theme-editor.php' ); remove_submenu_page( 'themes.php', 'theme_options' ); } } add_action('admin_head', 'hide_menu'); ?>
Forum: Fixing WordPress
In reply to: Black Bar on mobile viewEnjoy your day and please change tread status to
ThanksForum: Fixing WordPress
In reply to: Theme ErrorHi @ita21
Just pass your function in action hook after_setup_theme
Like this
add_action( 'after_setup_theme', 'constants' ); function constants() { $blogValue = get_option( 'blogs_creators', '' ); define('BLOGS_CREATORS', $blogValue ); }
Thanks
Forum: Fixing WordPress
In reply to: Black Bar on mobile viewThen please update this css like bellow
@media(max-width:1024px){ div#page-header-wrap{display:none;} }
Forum: Fixing WordPress
In reply to: Black Bar on mobile viewForum: Fixing WordPress
In reply to: a temporary Folder is missing.- Connect to your website using an FTP client or a File Manager. You can do this from the cPanel dashboard of your hosting account.
- Locate the wp-config.php file and edit it.
- Copy-paste the following code to the file before the line that says, ‘That’s all, stop editing! Happy blogging’.
define('WP_TEMP_DIR', dirname(__FILE__) . '/wp-content/temp/');
- Save your changes.
- Upload the wp-config.php file back to your website.
- Go to /wp-content/ folder.
- Create a new folder named Temp.
- This reply was modified 3 years, 5 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: a temporary Folder is missing.Hi @al3xz3t
You should follow this article, this will be helpful in your issue
https://www.wpbeginner.com/wp-tutorials/how-to-fix-missing-a-temporary-folder-error-in-wordpress/
Forum: Fixing WordPress
In reply to: Comments Not Showing UpYou should try to follow this article, hope this will be helpful in your issue
https://hostiper.com/fix-wordpress-comments-not-showing-on-posts-or-pages/