Devcom
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] PHP Error messageHi Andy,
Has this been fixed yet? We are still receiving this error and are needing to deploy soon.
Forum: Plugins
In reply to: [BuddyDrive] About BuddyDrive 1.3.0Great work! And thanks a million ??
Forum: Plugins
In reply to: [BuddyDrive] Can't add files to folders in GroupsThanks
Forum: Plugins
In reply to: [BuddyDrive] Can't add files to folders in GroupsResolved on 1.3 upgrade – nice!
Here are three features I think will make this plugin more stellar than it already is…
1) share files to multiple groups via checkbox. BuddyPress simple events does this well – you could probably snag the code from that.
2) Group members should be able to contribute to the same folder
3) Email notifications of new files.
Forum: Plugins
In reply to: [BuddyDrive] Removing Steps to Specifically Use BuddyDrive for GroupsLooking forward to that.
Thanks for your great support
Forum: Plugins
In reply to: [BuddyDrive] Removing Steps to Specifically Use BuddyDrive for GroupsThanks. I’m going to take a look at it and maybe fork it so I can contribute. Are their any hooks yet or functionality for sending out an email to group members when a file has been added?
Forum: Plugins
In reply to: [BP Group Documents] There was a problem saving your file, please try again.Any fix for this?
Forum: Fixing WordPress
In reply to: White Screen on Designated Blog PageSolved.
Inside my functions.php I had a file include pointing to the directory admin/index.php – This was to include an options framework for the theme. Now, I don’t know why this was happening but when I looked inside the WordPress editor, it was listing two Main Index pages and one of those was the admin/index.php include. WordPress was trying to make the arbitrary file part of the Template Hierarchy and it was throwing the system off. I solved all my problems by renaming the admin/index.php file to admin/index-options.php so WordPress would recognize it as being outside the template hierarchy. Very strange, but thats what happened.
Have you ever seen this happen?
Forum: Fixing WordPress
In reply to: White Screen on Designated Blog PageDebug is set to True
With all plugins deactivated, it still doesn’t work. It works on 2014 when the theme is switched with all plugins activated as well.
Here is the requested code. Its not complete but it should work.
<?php get_header(); ?>
<section>
<div class=”container”>
<div class=”row”>
<div class=”col-sm-12″><?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php endwhile; endif; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: White Screen on Designated Blog PageOkay,
I’ve figured out that it works like it should when I activate the default 2014 theme so I know I’m doing it correctly.
Is there a certain hook or piece of code I need to place in my custom theme to get this working? I only have 5 pages in the theme.
Forum: Fixing WordPress
In reply to: White Screen on Designated Blog PageThe page is blank. Nothing is being rendered. I can’t figure out what is causing this. Its not even rendering header.php
Anyone?
Forum: Fixing WordPress
In reply to: White Screen on Designated Blog PageHey,
Thanks for the quick response. My file name is index.php – I’ve also removed the <?php /* Template Name: News Feed */ ?> code due to your comment above but still getting a white screen.
I can also provide credentials if that helps with the transparency of the issue.
Forum: Themes and Templates
In reply to: Template Hierarchy not being followed by wordpress.Everything is crystal clear now. Thank you very much for your reply. That brings tremendous clarity to what I’ve been doing for the past year lol.
Forum: Themes and Templates
In reply to: Template Hierarchy not being followed by wordpress.What is the difference between home.php and index.php in the hierarchy?
Forum: Themes and Templates
In reply to: Template Hierarchy not being followed by wordpress.Thank you esmi and chip for being clear about the issue. I have solved the issue and will now make it a point when saving files to prefix with “template-” to avoid using reserved files. The responses were very prompt and correct. Thanks again.