Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Horizontal Instagram Footer WidgetHave you tried any of these?
https://www.elegantthemes.com/blog/resources/5-great-plugins-for-sharing-your-instagram-feed-with-wordpressForum: Fixing WordPress
In reply to: Cannot add a link to postsWhat theme are you using?
Have you added any new plugins recently?Forum: Fixing WordPress
In reply to: How to change comment prompt?Yes, this is true. Anything you change would disappear upon an update to the theme. You would want to utilize a ‘child theme’ to avoid that (https://codex.wordpress.org/Child_Themes)
Forum: Fixing WordPress
In reply to: Not able to login to my websiteDid you edit your php files at all?
Something is happening around line 74 of your wp-settings file. Sometimes it can be something as small as ‘white space’ before or after your
<?php ?>tags. (see http://stackoverflow.com/questions/8028957/how-to-fix-headers-already-sent-error-in-php for some dense reading on this)Forum: Fixing WordPress
In reply to: Change default page template optionPotentially, you could write your own custom function similar to one of these (http://wordpress.stackexchange.com/questions/196289/is-there-a-way-to-change-the-default-page-template-selection). Alternatively, you could duplicate the existing default to a secondary template and use the template you want within the existing ‘standard’ set.
Forum: Fixing WordPress
In reply to: I need to know what this category url this would beIt is possible that their site is set up with a different code organization (categories versus taxonomies, etc.) or that their theme offers different archive display options.
What theme are you using?
Do you have a link to where it is live?Forum: Fixing WordPress
In reply to: How to change comment prompt?Do you have any experience editing php files? What theme are you utilizing? Often times that text will be included in the comments.php file of your theme.
This is a link to the comment_form section in Codex which shows a few different ways to utilize
comment_formwithin that file: http://codex.wordpress.org/Function_Reference/comment_formForum: Fixing WordPress
In reply to: How to center the menu text?Do you have experience with CSS? Right now there’s a
float: centerplaced on that h1, which isn’t a valid CSS property for ‘float’ (https://developer.mozilla.org/en/docs/Web/CSS/float). You could dotext-align: center?If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
Forum: Fixing WordPress
In reply to: Assigning Variable for Order in SequenceWhat does your query currently look like? Are you using WP_Query? If so, there are different order parameters you can feed it (https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters). Hope that at least points you in the right direction!
Forum: Fixing WordPress
In reply to: How to centralise logo and remove navigation background colourFor me, your logo is centered and there isn’t a grey background on your nav, so I’m assuming you got this sorted?
Forum: Fixing WordPress
In reply to: Open graph and the featured image w/out pluginThe third option lists a potential solution (without a plugin) here: http://www.wpbeginner.com/wp-themes/how-to-add-facebook-open-graph-meta-data-in-wordpress-themes/
Forum: Fixing WordPress
In reply to: Scrollbar In tabsI’m not quite sure I follow what your intended goal is when you say a scrollbar inside a tab. Do you have a link to an example of what you mean and the site you’re working on?
Forum: Fixing WordPress
In reply to: Every time a page is updated, I have to resave permalinksHave you adjusted anything within your htaccess file? It sounds like the rewrite/flush_rules are being affected somewhere. Is it possible a plugin is causing it?
Forum: Fixing WordPress
In reply to: button "add media" can't clickAre you using plugins at all?
I would recommend starting by creating a backup, then disabling your plugins and testing them one by one to see if there is a conflict that could be affecting your media gallery.
Forum: Fixing WordPress
In reply to: Large white bar appears on mobile after adding tetxboxI’m not seeing a vertical white bar on my end, did you get this sorted out?