Trey Kane
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Widgets doesn't work on my own themeThose appear to be functioning correctly. For “Contact Form 7” you will need to style this mostly yourself.
For “The Events Calendar” there are various options available to you for using the default plugin styling, a little plugin styling, or none at all. I suggest trying to change these options to see if you can get your desired result.
Forum: Themes and Templates
In reply to: [Sento] edit header.phpheader.php is a file that is used for all pages of your WordPress site.
https://codex.www.ads-software.com/Theme_Development#Document_Head_.28header.php.29
Forum: Fixing WordPress
In reply to: Cant see text in reply to comments formSorry I was away from my computer.
I’m not sure if you fixed this, but I’m not seeing the same issue? I’m using Chrome on Mac.
Forum: Fixing WordPress
In reply to: Parallax Scroll PluginSorry, I was away from my computer.
You may have solved this but I’m not seeing the same issue? I’m using Chrome on Mac
Forum: Themes and Templates
In reply to: [Kichu] Disable Image HoverWhen you’re inserting the images into WordPress using the “Add Media” button you will see a section titled “Attachment Options” on the “Add Media” page.
In this section you can select what the image links to, if you set this to “None” the image will no longer link to a page with the image on it.
You can find more information on this in the Codex: https://codex.www.ads-software.com/Inserting_Media_into_Posts_and_Pages
Forum: Fixing WordPress
In reply to: Cant see text in reply to comments formCan you provide a link to an example of the issue?
TGM was likely included by the theme author to force certain plugins to be downloaded and used with the Avada theme. (https://tgmpluginactivation.com/)
I would contact the theme author about this issue.
EDITED FOR: Theme name and spelling.
Forum: Fixing WordPress
In reply to: Parallax Scroll PluginCan you provide a link to an example of the issue?
Forum: Fixing WordPress
In reply to: Missing Screen Options TabDepending on the theme you have installed the theme author may have seen fit to disable the Screen Options tab.
Though this is not an advisable way to build themes, it is possible and does happen.
Forum: Fixing WordPress
In reply to: Where is the css for the title text for a static page defined.@questas_admin Actually has provided you the correct way to make this change, you should create a child theme, and your custom changes go there. You should never alter a theme directly unless its of your own creation as an update to that theme could very well wipe out any changes you’ve made.
Forum: Plugins
In reply to: [Photoswipe Masonry Gallery] Javascript error, not workingI’m having the same issues. As soon as I installed Yoast, everything broke. I haven’t yet pinpointed why Yoast broke the Gallery. But, at this point… Yoast is more important than the Gallery.
I really liked the functionality of this plugin and I would use it again if this issue can be resolved.
Custom theme based on Underscores. Everything was working fine, until I installed Yoast. If I remove Yoast, it works again.
Forum: Themes and Templates
In reply to: [Twenty Twelve] mobile and ipad menu pb with child twenty twelveAt the mobile breakpoint your menu needs to be hidden using CSS.
The button is adding the class “toggled-on” to your menu when it is clicked. You will need to use this class in your CSS to make the menu appear.
Be sure you only do this in you mobile media queries, or your menu will be hidden on desktop as well… Just to help you, the button appears when the browser width reaches anything below 600px.
Forum: Fixing WordPress
In reply to: Conditional tag for pages without an ID.It doesn’t look like you can pass a null value for page ID’s because as you’ve experienced it will just always return true.
If nothing else there is fitting the bill I’d start looking in other areas. Do the pages share any unique commonality? Taxonomy? Templates? Post Type? Scripts? Can you give them some unique commonality to set them apart?
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] Text Align CSSThe text just needs to be properly wrapped in
<p>
tags.When I look at the source for that section of the page it stands out as its the only text on the page not wrapped in
<p>
tags. This may have been due to entering the content in the CMS as plain text in this instance. In which case WordPress would not automatically insert these tags for you. Below is the section of code which I’m looking at:<div class="col-xs-6 col-centered col-fixed" style="width: 100%;"> Die ausgezeichnete Küche und individuell eingerichtete G?stezimmer machen den Sonnenhof zu einem beliebten Domizil am Rhein, das günstig mit Auto und Bahn erreichbar ist.Traditionell ist der Sonnenhof ein famili?r geführtes Hotel und nicht vergleichbar mit gro?en H?usern.<p></p> <p>Unsere Zimmer haben den 2**-Standard (Dehoga-Klassifikation). Wer den Komfort eines 4** Hotels erwartet, ist sicher bei uns falsch.</p> </div>
Corrected it would be
<div class="col-xs-6 col-centered col-fixed" style="width: 100%;"> <p>Die ausgezeichnete Küche und individuell eingerichtete G?stezimmer machen den Sonnenhof zu einem beliebten Domizil am Rhein, das günstig mit Auto und Bahn erreichbar ist.Traditionell ist der Sonnenhof ein famili?r geführtes Hotel und nicht vergleichbar mit gro?en H?usern.</p> <p>Unsere Zimmer haben den 2**-Standard (Dehoga-Klassifikation). Wer den Komfort eines 4** Hotels erwartet, ist sicher bei uns falsch.</p> </div>
Forum: Fixing WordPress
In reply to: Conditional tag for pages without an ID.You can use other idenfiers for the page besides the page ID, take a look at the rest of the conditonal options on the codex, for instance you could try targeting the slug of the page or the page title.
is_page( 'About Me And Joe' ) When the Page with a post_title of "About Me And Joe" is being displayed.' 'is_page( 'about-me' ) When the Page with a post_name (slug) of "about-me" is being displayed.