Sennza Pty Ltd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom user database and wordpress.Hey there VuoriLiikaluoma,
What you’re asking for really isn’t a simple task unless your own main site with it’s own user database and registration offers an API that a programmer could tap into to pull out all your users and then write a plugin/script to add all your users into your WordPress site.
I would highly recommend that you use WordPress as your main database and ditch the other systems so you have everything in one database.
In terms of the third party projects like phpBB then if you can hold off a month or two then there will be the release of bbPress as a plugin. This is forum software for WordPress. It ships with BuddyPress and is amazing. That way your ‘single account’ which is often referred to as ‘single sign on’ will work through all your projects.
If you need to brand your sites differently then you can setup WordPress Multisite and have different themes and sites all running off the one database.
You might want to track down a WordPress consultant in your area for some good advice on this!
Hope that kinda helps to get you on the right track!
Forum: Fixing WordPress
In reply to: wp_nav_menu after?Hey ironfenix,
I’ve had to do that in the past for a few sites and I tackled it a little differently. Rather than using a pipe ‘|’ I would use CSS and utilising a
border-right:1px solid #fff;
substituting #fff with whatever colour you want.You’ll still get the same result with an extra one at the end so you can either use something like #menu li:last-child { border-right:0; } and that’ll get rid of the last one in some browsers.
Some versions of IE don’t recognise the :last-child pseudo class.
You might need to add some jQuery if you need to deal with that. Something like:
jQuery(document).ready(function($) { jQuery("#nav li:last").css({'border-right':0}); });
Should deal with it I think ??
Forum: Fixing WordPress
In reply to: Need an e-commerce plugin that can handle lots of variationsCheers Rich ??
Yeah wp-ecommerce doesn’t do colour choosing chart either. That’s all jQuery stuff I’ve worked into it, same goes with the Font option too. If you look at that page with CSS turned off you’ll see all the wp-ecommerce fields i’ve hidden with CSS display:none and I’ve used jQuery to adjust the values of those fields with the .change() event. In terms of the frontend I am pushing the limits of ecommerce but that’s no real issue, it’s only the backend that’s failing me. I’ve tried to debug the memory issue with memory_get_usage() in PHP but because it’s all done through ajax it’s a pain in the butt to mod. I know I’d have to do some SERIOUS coding to address the issue!
I was so close with it it’s not funny.
Yeah, there are a stack of forum threads with people having the same issues as me but the dudes at wp-ecommerce ignore them cause it’s a know probably that they don’t seem to want to address ??
I’m in the process of modding PHPurchase at the moment to work with all my crazy jQuery magic. If that fails then I’ll give eShop a whirl cause I can pretty easily add in some extra jQuery to pull in my auto preview and price update.
Thanks heaps Rich. I appreciate your help and your time!
Forum: Fixing WordPress
In reply to: Need an e-commerce plugin that can handle lots of variationsHey Rich,
Thanks for your response ??
I guess the easiest way is for me to send you a link to the staging site. Ignore all the styling etc cause it’s a work in progress:https://www.yachtnames.com.au/ it’s for the Boat Name part at the top.
That’s where I’m at with wp-ecommerce. For some reason they’ve coded the backend so that every variation has to get listed so for example you could get:
- Size: Up to 20mm, Font: Agency, Colour: Blue, Shadow: Yes, Outline: Yes, Italics: Yes
- Size: Up to 25mm, Font: Agency, Colour: Blue, Shadow: Yes, Outline: Yes, Italics: Yes
- Size: Up to 30mm, Font: Agency, Colour: Blue, Shadow: Yes, Outline: Yes, Italics: Yes
Etc, etc. 59280 variations ??
I was looking at eShop earlier today but I haven’t given it a whirl yet. I’ve bought “phpurchase” and I’m going to have to modify all my jQuery and Cufon magic to see if that’ll work with phpurchase. It might not so if you think Eshop can handle it then please let me know cause if this doesn’t work then that’ll be my next option!
Thanks Rich!
Forum: Fixing WordPress
In reply to: BIG PROBLEM, please helpSweet. No worries! Glad to help out.
I had a look at the site in Firebug and it seemed weird for that lightbox to define the 100% height. I’m sure a few other people have struck that problem as well with the plugin.
Haha yeah you and me both! ??
P.S. The site looks great too. Good work!
Forum: Fixing WordPress
In reply to: Permalinks not Displaying in Recent PostsHey there,
I’ve had that one before too. Try looking under Settings -> General in and check the WordPress address (URL) and Site address (URL) fields. If the both have a trailing slash e.g.https://www.sitename.com/ then change them both to https://www.sitename.com and you should be set.
I you can’t edit them then look in your wp-config.php and look for `define(‘WP_SITEURL’, ‘https://www.sitename.com/’);
define(‘WP_HOME’, ‘https://www.sitename.com/’);`and change that to:
define('WP_SITEURL', 'https://www.sitename.com'); define('WP_HOME', 'https://www.sitename.com');
Hope that fixes it for you!
Forum: Fixing WordPress
In reply to: BIG PROBLEM, please helpLooks like a bit of a weird one.
My first guess would be to open: https://www.thehighkings.com/wp-content/plugins/jquery-lightbox-balupton-edition/styles/jquery.lightbox.min.css and change
html,body{margin:0;padding:0;height:100%;}
tohtml,body{margin:0;padding:0;}
The 100% height might be tricking IE? IE is always a pain for little bugs like this so I usually have to try one thing at a time. Changing that should affect any of the lightbox functionality. Because that stylesheet is loaded after the style.css file it’s affecting the whole document.
Forum: Themes and Templates
In reply to: Mystique – Year included in "posted date" on blog entriesTo set the language in WordPress you normally have to add a line into the wp-config.php file in the root directory.
define ('WPLANG', 'nb_NO');
or
define ('WPLANG', 'nn_NO');
should work for you.Forum: Themes and Templates
In reply to: Mystique – Year included in "posted date" on blog entriesExcellent.
It’s always good to get feedback as a theme author cause a lot of the time we don’t test things like that so when users give us feedback on little things like that we’ll change our themes to give the users more options going forward!
Forum: Themes and Templates
In reply to: next page previous pageOh wait a second. I’m an idiot. It only just clicked that this is for a page and not a post. Have a go with this code instead:
<?php $pagelist = get_pages('sort_column=menu_order&sort_order=asc'); $pages = array(); foreach ($pagelist as $page) { $pages[] += $page->ID; } $current = array_search($post->ID, $pages); $prevID = $pages[$current-1]; $nextID = $pages[$current+1]; ?> <div class="navigation"> <?php if (!empty($prevID)) { ?> <div class="alignleft"> <a href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a> </div> <?php } if (!empty($nextID)) { ?> <div class="alignright"> <a href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a> </div> <?php } ?> </div><!-- .navigation -->
which is from Next and previous links
Forum: Themes and Templates
In reply to: Mystique – Year included in "posted date" on blog entriesEeeek, make that:
<p class="day"><?php echo get_the_date(); ?></p>
I forgot the echo! ??
Forum: Themes and Templates
In reply to: Mystique – Year included in "posted date" on blog entriesAhh okay then. I’m with you now. I haven’t got that theme I was just having a crack based on other themes. That’s really kinda bad coding on their part because the user should have the option to customised it.
What I’d personally do it change:
<p class="day"><?php the_time('M jS') ?></p>
to:
<p class="day"><?php get_the_date(); ?></p>
That value will grab the date and format it to whatever is in the setting that I mentioned above. I’d also send an email to the Mystique Theme guys and get them to alter the core files in the theme to have that so users can control the date format ??
Hope that helps.
Forum: Themes and Templates
In reply to: next page previous pageCheers for that. Try moving the line:
<?php endwhile; ?>
so that it’s underneath
<!-- END: content-article -->
I think you’re closing the WordPress Loop too early from the looks of it. I haven’t tested it on a site yet so if that doesn’t work then let me know and I’ll upload that to one of my sites and have another look.
Forum: Themes and Templates
In reply to: next page previous pageHmm if that doesn’t work then it sounds like there might be something wrong with you WordPress Loop.
Can you please post all the code in your page.php here? That way I can see how you are doing the loop and see if I can recommend an adjustment for you ??
Thanks!
Forum: Themes and Templates
In reply to: next page previous pageHey there,
Try using these lines of code instead:
<?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div> </div><!-- #nav-above --> <?php endif; ?>
That’s taken from the Twenty Ten theme that ships with WordPress so that should work a treat.