• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Wordpress Dynamic Theme - WPXenCSS

Would it be possible to have some kind of phrasing system? Both for the menu, header, footer, and the "Critical Mass" title which are printed in many places.

Also, it would be great with a similar system for links. I use the URL rewrite in Xenforo, so all links in the wordpress needs to be changed manually. I can't really do that every time I upgrade. :)
 
Would it be possible to have some kind of phrasing system? Both for the menu, header, footer, and the "Critical Mass" title which are printed in many places.

Also, it would be great with a similar system for links. I use the URL rewrite in Xenforo, so all links in the wordpress needs to be changed manually. I can't really do that every time I upgrade. :)

The critical mass portion is fixed in what I just uploaded, it pulls it from the title of your Wordpress blog which you set in Settings->General. As for the rest I can include them in options so that you can set it up. Because it doesn't actually hook in to the Xenforo system at the moment it'd be really rough to pull those values from XF. I look and see if from the WP side it's possible to do a tighter integration.
 
Try the version I just uploaded, the link issue should be fixed.
Good deal. I will let you know. Truly appreciate the work and support you have put in on this. The only request I would have for future versions is if someone changes the forum style, the wp style also changes.
 
Works. :)

The only other 2 bugs I see remaining are The log in panel not collapsing if you aren't logged in, expand it, then try and close it without logging in,

and

the next-previous pages links at the bottom of the stories pages.
 
The login panel not closing is almost always because a second copy of jquery is being loaded in Wordpress, I'd check your page and see if another addon on wordpress is causing that. The next previous pages portion is coming in the updated I'm working on today.
 
Should this work ok on WAMP, I have wordpress installed under localhost root and xenforo in a folder called xen, I made the path /xen but the css dosent load
 
I'll try it out on my WAMP when I get some time today in a similar set up and see what I can find.
 
The critical mass portion is fixed in what I just uploaded, it pulls it from the title of your Wordpress blog which you set in Settings->General. As for the rest I can include them in options so that you can set it up. Because it doesn't actually hook in to the Xenforo system at the moment it'd be really rough to pull those values from XF. I look and see if from the WP side it's possible to do a tighter integration.
That would be excellent. Great job!
 
this is great as it does the basics...but it would be great if it pulled the real navigation and new titles from xen

it got the color scheme, but not of the graphics or nav mods.
 
There seems to be a problem with the images posted in the articles, I've set them so they are justifyed right but with this theme they just appear to the left and there is no wrapping of text around them.

It would also be good if you could add the featured image to the category view as well.

It would also be good it it were possible to add links with drop down menus to the main nav bar and add spots to ad advertising code from the wordpress control panel.
 
Yep, I noticed that as well. It's because there are no css for that in style.css.

So, add this in style.css to make it work (and I assume bambua will add it, or something better, in the next release):

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
 
Yep, I noticed that as well. It's because there are no css for that in style.css.

So, add this in style.css to make it work (and I assume bambua will add it, or something better, in the next release):

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
Where did you add this?
 
Any way to get this to show more than 4 articles on the front page? I have the setting set to 10 and all other themes show the 10.

*Edit
Found out that you have to MANUALLY edit home.php

Find
Code:
'posts_per_page' => 4,

and change the value to 10 or whatever you like.
 
Back
Top Bottom