jeezyo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: images will not show upFor a custom field, I THINK you’d want to enter in the full path to the image. So if youre custom field was “Image”, and you entered in https://(path here), then in your template file:
<?php $image = get_post_meta($post->ID, 'Image', true); ?> <img src="<?php echo $image; ?>" alt="" />
Forum: Fixing WordPress
In reply to: Creating page / insert stand alone websiteYou wouldn’t need to actually create a page, assuming your theme supports custom menus, its pretty simple. Just go to Appearance->Menus, look for “custom links” and you can just add it there with a label.
Forum: Fixing WordPress
In reply to: Adding a blank page within a themeI’ve not used that particular plugin, but generally speaking, if you’ve created a page to display the forum, you would just need a special template for it. So basically, you can copy and paste the code for the page template you are using now into a new php file. Check this out to see how to put the info the template file needs at the top of the page (you need to give the template a name inside the file. https://codex.www.ads-software.com/Pages#Creating_Your_Own_Page_Templates. Call the actual file template-forum.php or something like that. Then go through, and remove <?php get_header(); ?>, <?php get_sidebar(); ?>, and any other alt sidebar code that looks like that. Next, go into the page editor, and change that pages template to the new one you created.
Forum: Fixing WordPress
In reply to: Add HOME Link as Default to the Navigation?Add it in appearance->menus. Custom Link, then just add the link to your site (put a forward slash at the end) and then label it HOME. Not sure if thats what youre going for, but that’s what i do.
Forum: Fixing WordPress
In reply to: Admin Pop-up windows displayed under pageInside your editor screen, look for “screen options” (upper right hand side of the screen). Change it from 1 column to 2 columns.
Forum: Fixing WordPress
In reply to: i broke my site, how can i get it backI took a look at the source, and tried to pull up your css file: https://www.nutritolavita.com/wp-content/themes/desk-mess-mirrored/style.css – what i see there is php. So it seems you have overwritten that file. Since that’s pretty much what controls your theme, youre gonna need to replace that. Hopefully you have a backup? ??
Forum: Plugins
In reply to: [group buying site plugin] Catchable fatal error: Object of class WP_Error….I had this exact same problem. Im struggling to remember how it was resolved, but i THINK it was just that the big button is tied to mailchimp, and i think you need to put the mailchimp API info in before that works. Or change that template.
Forum: Plugins
In reply to: [Auto Thickbox] [Plugin: Auto Thickbox] Setting width for iframe thickboxI thought for a minute i could do it by defining it in the query string like outside wordpress, but that only reduces the size, i still cant get the size im looking for exactly.
Forum: Fixing WordPress
In reply to: Can't seem to change home page title or description properlyFYI, if anybodys reading this…. if you share houseofpizzapa.com/index.php, the title/description come up fine…so this still makes no sense ??
Forum: Themes and Templates
In reply to: Text in pages automatically turning into hyperlinksLooks like you didnt close the tag for the hyperlink in your title:
<h2><a href="https://mashareeb.com/agenda/" rel="bookmark" title="Permanent Link to Mashareeb’s Agenda">Mashareeb’s Agenda</h2>
Just put
</a>
before you close the h2. You have that above it, you must have moved it.Thanks so much for updating the plugin, it now works exactly as expected, and i will vote for it. I really like the way the openmenu site works. Im a designer, but im building this site for a relative’s business…so i wanted them to have a way to easily update their menu if they need to. I am correct in assuming the way to do this would be to log into the account at open menu, make changes, and then re-download the xml file?
Im actually perfectly happy with that, but i think an awesome feature would be to have a way to edit the file directly through the wordpress interface. Though im not sure how that would work ?? Thanks again.
Perfect, thank you. I look forward to hearing back from you.
Yeah, i thought that might be it…but i tried shift + refresh, i emptied my cache, i even went into the wordpress admin — because i use w3 total cache plugin — and emptied that cache, but nothing helped. And again, i had even tried to html code for a skype button instead of the plugin, with the same results in chrome, on multiple computers. Very strange.
oh, the page is https://www.houseofpizzapa.com/menu
Yeah, the only reason i have the site password protected for now, is because the website is not complete yet. I just removed the password protection though, so you can take a look. Thanks!