juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: page isn’t working – currently unable to handle this requestwhat happened before the issue cropped up?
i see no problems at the site…Forum: Fixing WordPress
In reply to: Problems with my siteThe theme you are using is a premimum theme that we don’t have access to. You need to request help from the theme’s support page https://themeforest.net/item/sport-wordpress-club-theme/9258218/support
Forum: Fixing WordPress
In reply to: How to create two distinct portfolio pages with separate contentThe theme you are using ‘Photo Me’ is a premimum theme that we don’t have access to.
Youshould ask for support on teh themes support page https://themeforest.net/item/photo-me-photo-gallery-photography-theme/12074651/supportForum: Fixing WordPress
In reply to: Right way of writing this conditional statement?If you want the wp_dequeue_script to run on those pages, then the
OR (!is_page(........
Should be
OR (is_page(........
Remove the !Forum: Fixing WordPress
In reply to: gallery not workingWait, you’re running WordPress 3.5??? and there is lots of spam looking things??
I think you need to get someone who knows what they are doing to clean up and update your site and you need to pay them. Try http://jobs.wordpress.net
Forum: Fixing WordPress
In reply to: Right way of writing this conditional statement?Try it like this
add_action('genesis_before_loop','cus_tom_single'); function cus_tom_single() { if (is_page()) { if ((get_post_type() != 'movies') OR (!is_page( array('about', 'contact', 'sitemap' )))) { remove_action( 'wp_head', 'movies_display_redirect' ); remove_action( 'wp_footer', 'movies_display_inline' ); } } } ?>Forum: Fixing WordPress
In reply to: 4.6 New insert link, default to _blank "open in new window"to request a core change go here https://core.trac.wordpress.org
as marius said, changing the core on your one is a bad idea.
Forum: Fixing WordPress
In reply to: 4.6 New insert link, default to _blank "open in new window"Well anything other than a plugin will be a change to the WP core and will go away each time you do an update.
You could request that WP make this a setable option.
Forum: Fixing WordPress
In reply to: Hoe to disable author request?try the plugin ‘wordfence’
Forum: Fixing WordPress
In reply to: gallery not workingIt might be helpful if you explained your issue with a little more detail, like what version of WP, what theme? did you disable all your plugins? are you using the visual or text editor? what are the exact steps you are taking from beginning to do the edit? do you actually have any images? what type of media is it?
Forum: Fixing WordPress
In reply to: Theme 52038 portfolio glitchIt looks like you are using a premimum theme. We do not have access to premimum themes and you should contact the themes support http://www.templatemonster.com/support.php
Forum: Fixing WordPress
In reply to: 4.6 New insert link, default to _blank "open in new window"Or is the only way to add one of the older plugins which do this? like
https://wordpress.org/plugins/open-external-links-in-a-new-window/
will those even work with the upgraded editor in wordpress 4.6?Have you tried it?
Forum: Fixing WordPress
In reply to: Blog posts are displayed as text only, no table or imageit must be that my theme “zeeMagazine” strips all HTML. Any ideas on how to get around that?
edit the theme to prevent it or pay someone to edit the theme for you
ask teh theme author for that option
use a different themehow do I “handcraft” the excerpt?
when editing the post you may see a section ‘Excerpt’ – if you don’t, go to the screen options (top right) and check the box for excerpts
Forum: Fixing WordPress
In reply to: Right way of writing this conditional statement?Why have you changed the first part from get_post_tyope to is_singular?
have you tried it with just the is_singular conditional?Forum: Fixing WordPress
In reply to: Posts not publishing, scheduling insteadWhat happens if you disable ALL your plugins?
If the issue goes away, enable the plugins one at a time to find the culpret.