Danielx64
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Having some minor CSS issues with custom themeAnyone?
Forum: Localhost Installs
In reply to: Can't View Pages or Posts After Manual WP Update to Instant WPQ to OP: Are you getting any errors in your error_log file?
Forum: Plugins
In reply to: [phpBB to WP connector (plugin version)] Getting ErrorThere is no plans to support phpBB 3.1, it’s bloated and the framework that is behind many of the new features (Symfony) makes it imposable to integrate any system (such as WordPress or joomla) without serious errors showing up.
Forum: Plugins
In reply to: [phpBB to WP connector (plugin version)] Getting ErrorHI there,
Just so that you know, you will not be able to use wp-united with this plugin.
Please turn off wp-united and try again.
Thank-you ??
Forum: Fixing WordPress
In reply to: Permissions getting set to 600Hello,
I did check to see if it was a server-side chron job but there nothing listed in both cpanel accounts.
I’ve also emailed the host to see if they know of anything but it’s long weekend over here so it will be a few days before they get back to me.
Thank-you for the links ??
Forum: Plugins
In reply to: [WP-United : phpBB WordPress Integration] This mod appears abandonedHi guys,
You may want to have a look at https://www.phpbb.com/community/viewtopic.php?f=70&t=2208986. I’m the author of it and while it doesn’t have the full feature set as wp-united, it is more stable and doesn’t have as many bugs in it.
Thanks ??
Forum: Hacks
In reply to: Only display comments from registered usersHi there,
Sorry about the late reply. I got caught up in a large project that went badly wrong.
I tried what you suggested and I’m afraid that it’s not working for me at all. I got a feeling that it may not work because of the fact that I’m calling up all the WordPress stuff in a completely different way that is not native.
I got my single.php and comment.php on github. Please be mindful that it’s not the latest version but the problem still show up on it.
Forum: Hacks
In reply to: Only display comments from registered usersHi there,
Thank-you for getting back to me ??
Yes I am using
wp_list_comments
with the below code:/** * Loop through and list the comments. Tell wp_list_comments() * to use phpbb_comment_loop() to format the comments. */ $defaults = array( 'walker' => null, 'max_depth' => '', 'style' => 'div', 'callback' => 'wp_phpbb_comment_loop', 'end-callback' => 'wp_phpbb_comment_end_el', 'type' => 'all', 'page' => '', 'per_page' => '', 'avatar_size' => phpbb::$config['wp_phpbb_bridge_comments_avatar_width'], 'reverse_top_level' => null, 'reverse_children' => '' ); wp_list_comments($defaults);
I’m displaying the comments that that post on single.php. The above code that I provided is out of comment.php and that file is being included in single.php.
I’ll give the code you provided a try when I get home tonight and let you know how it goes.
Forum: Hacks
In reply to: Controlling comments in layout based on statusHi guys,
Thankyou for the answers ?? Yes bcworkz (Sorry that I don’t know your name :() I’m doing this in a template and my theme’s function.php file.
my comments.php file has
<?php $args = array( 'walker' => null, 'callback' => 'phpbb_comments', 'type' => 'comment', 'style' => ''); ?> <?php wp_list_comments( $args); ?>
And my functions.php file has https://pastebin.com/JmuGYx8B (posted on pastebin).
Now the code works fine when I use
<?php if ($status == 'approved') : ?>
or<?php if ($status == 'unapproved') : ?>
but nothing happens when I put in deleted or spam as the keyword.What I am trying to do here is bring some of the features from wp-admin and bring it out into the frontend area so that you can make changes to posts and comments without having to go into the backend (wp-admin).
Forum: Installing WordPress
In reply to: wordpress 3.3.1 supports MySQLi ?I would like to know the same thing as well.
Ok thanks, This added info mya help in working out what plugin it as as I would like to do the same thing as well.
This is an example of an email that sent:
Subject: New article posted: [CC] Free BDLot Video Converter!
Message:
Hello there!
Today is August 21, 2011 and a new article has just been posted on dotTech:
[CC] Free BDLot Video Converter!
<post link>Please feel free to leave any comments/feedback about the article.
Take care,
Ashraf
dotTech.org
________________________________________________________You have subscribed to these e-mail notices about new posts on dotTech.
If you want to unsubscribe or change what articles you are e-mailed about, please visit:
https://dottech.org/e-mail-reminders/?code=b498078e3859061fb6ab284f5e174f26&addr=<email deleted>If I click on https://dottech.org/e-mail-reminders/?code=b498078e3859061fb6ab284f5e174f26&addr=<email deleted> it take me to a page that let me chose what categories I want to get an email about.
Thanks
Forum: Themes and Templates
In reply to: wp_get_nav_menu_items help requiredJust the heads up, I was able to get this sorted out ??
Forum: Themes and Templates
In reply to: wp_get_nav_menu_items help requiredThats something that I have never done before. Can you please tell me how I go about doing it?
I know that I would need to do
<?php wp_nav_menu( array( 'walker' => 'wphpbb_mav_menu' ) ); ?>
Thanks
Forum: Themes and Templates
In reply to: wp_get_nav_menu_items help requiredOk my last post may not be so clear.
The mod that I’m porting to wordpress has this bit of code that go into the header:
and the after would look something like this:
Please note that
<li class="menu_button" style="float:<?php echo $wphpbb_options['mifloat'];?>"><a href="{buttons.URL}" title="{buttons.NAME}" style="font-weight:<?php echo $wphpbb_options['fweight'];?>text-transform:<?php echo $wphpbb_options['ttransform'];?>">{buttons.NAME}</a></li>
would need to be outputted bywp_nav_menu ();
Mods can you please merge this post with my other one?
Thanks
Forum: Themes and Templates
In reply to: wp_get_nav_menu_items help requiredThere is more to that, I’m working on the next version of my ProPress theme and one of the things that I would like to do is port an addon that someone have written for phpBB.
This addon has a setting page that let you control many different parts.
The idea of my theme is to allow people to have the same look and feel as their phpBB forum without too much overhead.
Thanks