onekea
Forum Replies Created
-
Forum: Plugins
In reply to: [Front End Users] After Registration… now what?Oh one other thing, the custom fields that i created display nicely but the username and pw fields are full width and looks a bit off. Is there a way to modify the display of this?
I don’t recall. I usually keep it pretty updated but it’s now Version 2.0.40. WP updated itself automatically. I want to just uninstall and re-install but I don’t want to lose my galleries.
I removed all plugins except for Akismet and it still doesn’t display. It was working flawlessly for months then all of a sudden it stopped after the update. Perhaps I did something wrong in the update? Highly unlikely but gotta ask…
Forum: Plugins
In reply to: [Watu Quiz] Quiz Layout / CSS IssueI’ve adjusted pretty much every element with a test of margin:20px and/or padding:20px and still the check box for the next question remains on the line above it after the period.
Aside from this one issue, the plugin is awesome. It looks like this…
[] Question number one is here.
[]
Question number two is here.[]
Question number three is here.[]
And the last question is here.NEXT >
I would be happy just adding a after the answer so everything just moves down one. I’m pretty decent at CSS but this has me baffled.
Sorry to be a pain, I really want to use this quiz!!
Here is a link btw. https://growinggreat.org/onlin-training/nutrition-curriculum/nutrition-review-quiz/
Forum: Plugins
In reply to: [Watu Quiz] Quiz Layout / CSS IssueUnderstandable. Any suggestions on which primary files I need to adjust so there are wider spaces between the questions? I think that alone should fix it.
Forum: Meetups
In reply to: LA meetups?That sounds awesome! I develop customized themes but there is so much more I need to learn. I hope a few other people can attend as well. I haven’t clicked on your link yet but I’m definitely down to connect with other users and developers. Count me in.
BTW, you can email me directly Michael. My email is rob (at) usd21 (dot) org. I’m in Culver City so about 5-10 min away from Santa Monica.
I haven’t found any help with this as well. I just wanted to add a few fields to my RSVP form but they don’t show. I just added a drop down with numbers 1-4 for attendees, as well as email and phone contact info.
Forum: Fixing WordPress
In reply to: Using basic flash elements in a themeAwesome… trying it now.
Forum: Fixing WordPress
In reply to: Using basic flash elements in a themedouble post…
Forum: Fixing WordPress
In reply to: Using basic flash elements in a themehaha… sorry, I take my html/css design and it has the code to embed the flash element.
<div id=”mainpic”>
<script type=”text/javascript”>
AC_FL_RunContent( ‘codebase’,’https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0′,’width’,’819′,’height’,’296′,’title’,’Main Picture’,’src’,’img/mainpic’,’quality’,’high’,’pluginspage’,’https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash’,’movie’,’img/mainpic’ ); //end AC code
</script><noscript><object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ codebase=”https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0″ width=”819″ height=”296″ title=”Main Picture”>
<param name=”movie” value=”img/mainpic.swf” />
<param name=”quality” value=”high” />
<embed src=”img/mainpic.swf” quality=”high” pluginspage=”https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash” type=”application/x-shockwave-flash” width=”819″ height=”296″></embed>
</object></noscript>
</div>When I link directly to the swf files and I double check that the js is in place, but still no success.
Forum: Fixing WordPress
In reply to: Silly QuestionI was putting it in the theme files. Is there an alternative?
Ok great, now my server says i don’t have permission to upload files… yay… now I cant even try this. Thanks for the tips though!!
Forum: Themes and Templates
In reply to: Using Categories to build pagesThis definitely helps. I see that I need to use this to sort out the loop:
query_posts(‘cat=2,6,17,38’);
But how do I create a seperate file for say a “TUTORIALS” page? Do I just copy the index.php file and modify the loop, then save it as tutorial.php, then pull that with
<?php include(TEMPLATEPATH . ‘/tutorial.php’); ?>
Sorry if I’m asking noob questions, I’m still trying to sort out all this out.
Forum: Themes and Templates
In reply to: Figuring out how to build my Main Index TemplateAwesome!! That helps a ton!
Forum: Themes and Templates
In reply to: get_header(); not workingYes. Thus far I have the following .php files
index.php (Main Index Page_
header.php (all the header info up untill the </div> tag of the header
nav.php (the navigation section)
leftcolumn.php
maincontent.php
rightcolumn.php
footer.phpIt simply shows a blank white screen the minute I put in the <?php get_header(); ?> code.