idowebwork
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Backup] Setting HMBKP_SCHEDULE_TIME doesn't workChange that to this and see if it fixes the issue for you there:
if ( ! defined( 'HMBKP_SCHEDULE_TIME' ) ) define( 'HMBKP_SCHEDULE_TIME', '8am' );Forum: Plugins
In reply to: [WP Backup] no datesYou mean date within the archive file name? That is there, unless something is not working on your host.
Forum: Plugins
In reply to: [WP Backup] Does it back up the media libraryIf you perform a complete backup, it will backup all site files (minus any excluded) and the database. That will include the files in the upload folder (media library) and plugin settings in the database (or files if the plugin store them there instead of in the database).
Forum: Plugins
In reply to: [CMB2] Limit File Upload Types and SizeAah ok. Was hoping there was something like
'formats' => 'jpg,png'and'size' => '60MB'. Perhaps I will have to look at something custom that I can include these sorts of options. Looking to do a photo upload and a video upload, but separate options. Thanks.Forum: Plugins
In reply to: [CMB2] Require a fieldAbsolutely appreciated that. Must have missed it when I was looking 😀
Forum: Plugins
In reply to: [Exploit Scanner] Absolutely WorthlessAwesome to see this recently updated. An amazing script indeed. Not Worthless anymore.
Products default to use the single.php file of your template. Alternatively, I see it can use a single-download.php template, if you set one up in your theme. Simply copy your theme’s single.php and rename the copy single-download.php. Then edit it to make it show the full width layout.
Forum: Plugins
In reply to: [Logo Slider Carousel – Responsive Client Showcase] How do you use it???This should be updated on the FAQs page, where it lists the shortcode as [logo_slider].
Forum: Plugins
In reply to: [underConstruction] Using UnderConstruction in a child themeA better solution (which can be implemented in a future update) is to check to see if the currently active theme is a child theme and contains the under-construction.php file like this:
if (is_child_theme() && file_exists(get_stylesheet_directory() . '/under-construction.php')) { $current_theme_has_uc_page = file_exists(get_stylesheet_directory() . '/under-construction.php'); } else { $current_theme_has_uc_page = file_exists(get_stylesheet_directory() . '/under-construction.php'); }That would replace line 149
$current_theme_has_uc_page = file_exists(get_template_directory() . '/under-construction.php');And then for underConstruction.php, replace the following:
if($this->displayStatusCodeIs(3)){ require_once(get_template_directory() . '/under-construction.php'); die(); }With this:
if($this->displayStatusCodeIs(3)){ if ( is_child_theme() && file_exists(get_stylesheet_directory() . '/under-construction.php') ) { require_once(get_stylesheet_directory() . '/under-construction.php'); } else { require_once(get_template_directory() . '/under-construction.php'); } die(); }This will allow for the under-construction.php to live in either the parent or child and pull from the correct place. And if it’s a child theme without the underconstruction.php, it will look to see if it exists in the parent and use it instead.
Forum: Plugins
In reply to: [underConstruction] Works great, but…Forum: Plugins
In reply to: [underConstruction] Using UnderConstruction in a child themeNicely done. I was just looking for this solution myself. The full solution is this:
To have it look in the child theme:
line 149 of ucOptions, change to$current_theme_has_uc_page = file_exists(get_stylesheet_directory() . '/under-construction.php');and have it display the under-construction.php file on the child theme:
line 125 of underConstruction, change to
require_once(get_stylesheet_directory() . '/under-construction.php');Forum: Plugins
In reply to: [Simple Subscribe] Removing widget titleThe easiest way it to enter just a single space in the title box and save. That will create a blank title and hide it for you. That way you don’t need to change any files and the change will survive plugin updates.