waxymilanders
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Product Catalog] Subcategories Not Showingok weird. I didn’t change anything but you are right the subcategories are displaying correctly. Must have been something I did. Yes I’m hiding the sidebar with CSS because I didn’t like the way it looked. Sorry for wasting your time!
Forum: Plugins
In reply to: [Ultimate Product Catalog] Subcategories Not ShowingIt’s set correctly in options. The shortcode is: [product-catalogue id=’33’]
Forum: Plugins
In reply to: [Ultimate Product Catalog] Product page emptyThat worked! Thanks 🙂
Forum: Plugins
In reply to: [Mooberry Book Manager] Activating the plugin crashes the websiteGoDaddy
Forum: Plugins
In reply to: [Mooberry Book Manager] Activating the plugin crashes the websiteI just tried installing/activating it and I got the “500 – Internal server error.”
Forum: Plugins
In reply to: [File Away] manager mode questionok thanks!
Forum: Plugins
In reply to: [File Away] manager mode questionok I must have done something wrong the first time, the error went away. But now it is showing all my files instead of the directory that I specified.
Forum: Plugins
In reply to: [File Away] manager mode questionI copied and pasted exactly what you had here:
class my_custom_fileaway_class
{
public function __construct()
{
add_shortcode(‘fa_manager_toggle’, array($this, ‘toggle’));
}
public function toggle()
{
if(!class_exists(‘fileaway’)) return false;
if(isset($_REQUEST[‘fa_manager’]))
{
$link = fileaway_utility::querystring(get_permalink(), $_SERVER[“QUERY_STRING”], array(‘fa_manager’), true);
$output = ‘Disable Manager Mode
‘;
$output .= do_shortcode(‘[fileaway directories=true manager=true]’);
}
else
{
$link = fileaway_utility::querystring(get_permalink(), $_SERVER[“QUERY_STRING”], array(‘fa_manager’ => ‘1’));
$output = ‘Enable Manager Mode
‘;
$output .= do_shortcode(‘[fileaway directories=true playback=extended]’);
}
return $output;
}
}
new my_custom_fileaway_class;Forum: Plugins
In reply to: [File Away] manager mode questionI added the code to the functions.php file but it gave me an error that the } in line 6 was “unexpected” and wouldn’t allow my site to load.
Forum: Plugins
In reply to: [File Away] Shortcode Generator does not display in editor on pagesactually I figured it out. It was because i had the plug in “page builder”, after I deactivated it your plug in showed up. This is such a great asset to my website! I’m very impressed 🙂
Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] disable shadow not workingOption 1 worked for me, thanks Libin!