Chris Everson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: siteurl in wp_options won't updateDo you by chance have the constants ‘
WP_HOME
‘ or ‘WP_SITE_URL
‘ set in your wp-config.php file? Having these set would override the values defined in the database.Forum: Fixing WordPress
In reply to: Changed domain names (on same server), small problemsA good place to start would be checking the code for the template to make sure nothing has a hard-coded URL. All URL’s should be generated using
bloginfo('url')
so that they’re updated with the URL change.Additionally, there may be some links in posts or pages that didn’t automatically change to reflect the new domain. You might want to check your database for any occurrances of kube57.tv and change them to kube57.com accordingly.
Forum: Fixing WordPress
In reply to: re-activate wp-login.phpWhat method did you use to de-activate it?
Forum: Fixing WordPress
In reply to: make javascript pop up work in postWhile sanitizing, WordPress removes JavaScript from posts. You’ll want to look into adding this functionality with a shortcode.
Forum: Fixing WordPress
In reply to: Conditional Statement (Advanced Custom Fields)Oh yeah, that too. George wins!
Forum: Fixing WordPress
In reply to: Conditional Statement (Advanced Custom Fields)What do you get when you try to echo out the conditional functions?
<?php echo get_field('lists'); echo get_sub_field('spcl'); ?>
Do you get values for both? Also, does it maybe not process the HTML markup? Try removing the paragraph tags?
Good luck lady! Feel free to shoot me credentials via email or whatever if you don’t figure it out within a couple hours. Should be home from work by then and available to toy with it.
Well, if the DB query is being made from within the plugin, i’d post it there. Otherwise, I guess keep it here.
This should be posted in the Plugins & Hacks forum for best results ??
Forum: Fixing WordPress
In reply to: Publishing pagesDo you have a cache plugin installed by any chance?
Forum: Fixing WordPress
In reply to: Add DEFAULT Facebook Share Thumbnail ???You can add Facebook Open Graph meta tags to the <head> portion of your site. Alternatively, there is likely a plugin to do this if code isn’t your thing.
Forum: Plugins
In reply to: Looking for plugin to post comments on my postsThis is dirty. Please don’t do it.
Make the web a better place.
Forum: Themes and Templates
In reply to: missing bullets on lists with Delicate themeIt looks like the li definition is overriding it now. Try moving bullet-1 below
li { list-style-type: none; }
and making it readul.bullet-1 li { list-style-type:disc; }
Forum: Themes and Templates
In reply to: archive issue need help ;/The template is typically at wp-content > themes > your theme > archives.php
Forum: Themes and Templates
In reply to: How to add space above website?<!-- End #wrapper -->
is most likely located in the footer.Checking out the Anatomy of a Theme section of the codex will help you gain an understanding of how all these files come together.
Forum: Themes and Templates
In reply to: How to add space above website?My guess would be header.php unfortunately every theme is different and I can’t view your PHP code.