seg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display author name, not username in commentsIt seems to be working fine now. I had some comments posted prior to changing the user display name and those particular comments did not change the author to the display name, but all future comments posted correctly.
Possible bug?
Forum: Everything else WordPress
In reply to: osCommerce and WordPressMPM – are you finding this:
function get_cat_name ($cat_id) {on line 33 of: /home/xxxx/public_html/shop/includes/functions/general.php
That is a osCommerce file and I do not believe that function should be in the general.php file – at least it is not in mine. You might want to compare your general.php file to the default general.php file in the latest osCommerce release.
Let me know what you find out … thanks.
Forum: Everything else WordPress
In reply to: osCommerce and WordPressI wanted to use the blog directory structure and keep the blog integrated into the osCommerce template instead of using blog.php as TheWebist uses in the above posted tutorial:
Embedding WordPress into OSC Part IITo do this I followed the instructions in the tutorial, but used the code from blog.php in the index.php in the blog’s main directory:
https://www.domain.com/catalog/wordpress/index.php
In index.php above:
require('includes/application_top.php');
Add this:
chdir('../../public_html/');
// turn off WordPress themes and include the WordPress core:
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
require('includes/application_top.php');Remove this:
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_BLOG);
You will also need to login to your WordPress admin and set Options > General > Blog address (URI) to “https://www.domain.com/catalog/wordpress/”
So far this has worked great for me – let me know if anyone else sees a problem with this. Thanks!
Forum: Everything else WordPress
In reply to: osCommerce and WordPressThank you – this is perfect!
Forum: Everything else WordPress
In reply to: osCommerce and WordPressI am hoping to also integrate WordPress and osCommerce. I noticed that there is a osCommerce contribution for this:
https://www.oscommerce.com/community/contributions,3886Not sure how it compares to TheWebist’s option. I will post an update when I figure out what works best for me.
Forum: Everything else WordPress
In reply to: RSS Feed – one post?Awsome, thank you.
Do you know if there is a plugin that will allow one feed document to display just one feed and another feed document display more than one feed?
Forum: Fixing WordPress
In reply to: Single Post PER Category on IndexI found a similar method to alphaoide’s example:
https://dev.wp-plugins.org/wiki/ShowCats
This will show the first post (or however many posts assigned in code) for each category – the categories being in a certain order. This is a good fix for the time being.
Ultimately it would be nice to show the first post for each category organized by most recent post (not by category).
For example:
Category 2
9/20/05 – 4:35 p.m.Category 1
9/20/05 – 3:50 p.m.Category 3
9/19/05 – 6:05 p.m.Viper007Bond, I am interested in seeing your idea.
Thanks!
Forum: Fixing WordPress
In reply to: Single Post PER Category on IndexI am looking to do the same thing – did you resolve this issue?
Forum: Fixing WordPress
In reply to: Editing user permissionsCorrection – I need to have user level 2 edit/publish user level 1 entries, but the user level 2 should only be able to manage and not create an entry.
Forum: Fixing WordPress
In reply to: FYI: wp 1.3, htaccess, permalinks, mode_rewriteGreat – thank you for posting this – it resolved my problem!