totaltec
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: child pages are highlighted in submenuI can’t see the problem. I tried to reproduce it on this page: https://www.captainpoolservice.com/swimming-pool-repair/swimming-pool-repair/
The children are not highlighted. I am using Chrome, what browser are you using?
Forum: Fixing WordPress
In reply to: How to group a series of posts within a sub menu?No sweat, doesn’t sound like a problem. I guess you have the posts categorized already? Have you created the category and added the posts to it? Then you can just create the menu links.
What do you need a more complete explanation of how to do?
Forum: Fixing WordPress
In reply to: Rewind Youtube video after finished playingI don’t know why it sounds so hard to people to just use a standard YouTube embed in their posts. I personally think it gives you more control. But you are certainly not alone.
If an iframe embed isn’t acceptable to you(which I will never understand), you will have to write some code. Check this thread : https://www.ads-software.com/support/topic/hiding-youtube-top-info-bar?replies=9
Forum: Fixing WordPress
In reply to: Link in header illustrationDoes your theme have a header.php file?
If you can’t find a particular piece of code easily, just download the entire theme directory. Then using a nice text editor like notepad++ or Sublime Text 2, recursively search the entire theme folder for the code snippet that you want to edit. Use the find in files feature. In your case I would search for “site-title”.
Forum: Fixing WordPress
In reply to: Rewind Youtube video after finished playingHow are you linking in the Youtube video? With a shortcode or an iframe embed?
If you use the iframe method, just set rel=0 on the embed code. Explanation: https://illuminea.com/remove-related-videos-from-end-of-embedded-youtube-video/
Forum: Fixing WordPress
In reply to: Fatal error!!!! What do i do?? Help asap!!!Open /home/content/p3pnexwpnas03_data03/02/2262202/html/wp-includes/widgets.php and read line 411? ??
Forum: Fixing WordPress
In reply to: two css rules, the same, but how to alter them?Hurray! Glad it worked. I knew because that was the id of the container element. Here is a good article on the subject: https://www.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/
Forum: Installing WordPress
In reply to: WordPress local install with XAMPPSounds like some module is not performing properly on your localhost. What is My_Walker? Where does it appear in your files?
Forum: Fixing WordPress
In reply to: two css rules, the same, but how to alter them?Thanks for providing the link, makes it a lot easier to understand what is going on. To get a more specific answer, let us know what specific styles and elements you are wanting to affect? The anchor tag?
I see .welcome-button assigned directly on the page. So it is defined in a style in the <head> section of the page, not in a separate style sheet. On page class definitions always trump linked style sheets. To define this in a style sheet, you need to be more specific than the on page declaration. Or you could copy the php file that controls the head into your child theme and override it that way.
An example of being more specific, try:
#masthead .welcome-button { /* Your styles here */ }
Forum: Fixing WordPress
In reply to: Menus corrupted on iOS devices?The menu works perfectly on my Iphone 4. I’m running IOS 8.0.2
I wonder if your devices just need to clear the cache. Anyone else see the issue on their device?
Forum: Fixing WordPress
In reply to: Background image in a postTo use an image as a background of a particular post, I would just use an inline on-page CSS style. Here is a super simple example I made you on jsfiddle: https://jsfiddle.net/eoyarozr/
BTW: The responsiveness of your template is broken on the “Customers” page.
Forum: Everything else WordPress
In reply to: How can I make this scenario work!?You could certainly install WPin a folder like mysite.com/mywp/
Then you could use it to create pages like: mysite.com/mywp/mylandingpage.htmlIn general, you cannot run WP plugins outside of WP. You could look at the code of the plugin and recreate it to work with your custom site. And I’m sure that with enough hacking and .htaccess trickery you could get the URL’s to work out the way you would like, but that is going to be a major pain.
Forum: Fixing WordPress
In reply to: where do I find specific page htmlHere is a plugin that seems to be designed to do just that: https://www.ads-software.com/plugins/per-page-add-to/
And here is a thread where a member explains how to accomplish this on your own: https://www.ads-software.com/support/topic/add-html-to-page-head?replies=6
Do either of those help?
Forum: Fixing WordPress
In reply to: some parts disappeared from my websiteBy default WP does not have any caching function that I know about. Based on the directory structure for the cache directory described above, it must be your theme that is caching content.
A?re there any settings to turn it off? What theme are you using?
Try posting in the theme’s support forum.
Forum: Fixing WordPress
In reply to: Problem With Menu OverlappingLooks like you solved it? Will you post the fix here please and mark the topic resolved?