jpurdy647
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Paged url rewrite causing 404Yea, they were having issues with all permalinks. What is happening on my site only occurs when the $paged variable is set to greater than 1, I can’t display multiple pages of posts
Forum: Fixing WordPress
In reply to: Paged url rewrite causing 404What should I try next to figure this out? I don’t know much about url rewriting but I think that is what is causing my issue
Forum: Fixing WordPress
In reply to: Paged url rewrite causing 404That was first first attempt at correcting this, but the issue persists 🙁
Forum: Plugins
In reply to: [The Events Calendar] No actual templates render?Resolved
Forum: Plugins
In reply to: [The Events Calendar] No actual templates render?Resolved
Forum: Fixing WordPress
In reply to: Page white space issue.You’ll definitely want to familiarise yourself with CSS and your web browsers inspector. This should get you going:
body.page-id-85 main#main > div.row { display: none; }More info on CSS and how to add it to a site here.
Forum: Fixing WordPress
In reply to: Orders being sent before payment is received …You are likely using wooCommerce. If so, you can go to wp-admin -> wooCommerce -> Settings -> Emails, then enable or disable which emails you want sent. You can also modify email templates by overriding them into your theme. More info here.
Forum: Fixing WordPress
In reply to: Change the header for only one page on a websiteYou could do that, and make it print out the same html the other had printed. Just replace
mysite_before_header();with the html it printed out.If the
mysite_before_header();function had any additional functionality though that will be lost. My thought would be replacing it would most likely be fine, and if finding that function were too difficult that is what I would do. I have done it in the past.Forum: Fixing WordPress
In reply to: speific contents not getting published on pageYou could try making sure everything is up to date? It looks like there is no html in the area you mentioned, so like you say the images are not being printed out with the rest of the code.
This sounds like either a theme or plugin issue, I am not sure what theme/plugin you are using to design your site, but you might try asking them? They should have a dedicated support area.
Forum: Fixing WordPress
In reply to: Google Adwords in One Page<?php
function your_function() {
echo ‘<p>This is inserted at the bottom of all pages</p>’;
if ($target_page_id == get_queried_object_id())
echo ‘<p>This is printed on only the target page</p>’;
}
add_action( ‘wp_footer’, ‘your_function’ );
?>Add this to your functions.php after replacing my code with your google embed code.
Forum: Fixing WordPress
In reply to: plugin update -> "Fatal error: require_once… "Can you access the site via ftp? You can disable the plugin by renaming its folder in wp-content/plugins to include a .bkp at the end.
Example:
The directory wp-content/plugins/the-events-calendar would become wp-content/plugins/the-events-calendar.bkpIf that corrects your issue I would try reuploading a fresh set of the-events-calendar files, something may have been corrupted during the update.
Forum: Fixing WordPress
In reply to: cant change color of hyperlinks on post pagesWould you mind posting the url you are trying to change the links at?
Forum: Fixing WordPress
In reply to: speific contents not getting published on pageWhat is the url to the page? And what is the code in the editor you used?
Forum: Fixing WordPress
In reply to: Change the header for only one page on a websiteThanks for that code, I compared the html in the header file to your site, it looks like that telephone numbers html(and all the “HTML Extras”) are printed from the
mysite_before_header();function. Your next step would be to go through your themes files, open any that look like they might have a lot of template functions in them, and search for that function. It sometimes takes a lot of digging to find those.Once you find that function, your theme ‘might’ allow it to be declared by a child theme if it is in something like this:
if( !function_exists( 'function_name' ))Otherwise you will need to copy that file into your child theme end modify it there. I don’t suggest modifying the parent theme because any updates will revert your code change back to the authors code.
Forum: Fixing WordPress
In reply to: Remove slider from blog posts, but keep on home pageWhat is the blog url? I can look at the css and possibly tell you why that didn’t work, as of now not enough information is provided.
Also, the best way to do this is to edit a php file, because even though that slider is not visible the browser will load the images, increasing the page load time. You will want to take a look at page.php, the slider code may be in there if it is included in your theme, or that file may point you in the right direction.
Keep in mind when editing theme files you want to override them by creating a child theme so your modifications don’t get overwritten when the theme is updated.