AngelaQ
Forum Replies Created
-
Forum: Plugins
In reply to: [Novelist] Plugin messing with subdirectory /booksHmm, I went to that spot and I don’t see a place to refresh it?
I didn’t see a way to reset. I did hit save at the bottom of the Permalinks page, but that didn’t fix the issue.
Forum: Plugins
In reply to: [Mooberry Book Manager] Stripping iframe?Actually it only strips them in the free version not in self-hosted WP sites. I use iFrames just fine in the rest of my site, but not in this plugin.
OKay, I finally found time to tackle this again. So, I created a php file and put it in mu-plugins, and in that php file I added this:
<?php function my_em_own_taxonomy_register(){ register_taxonomy_for_object_type('participating_author',EM_POST_TYPE_EVENT); register_taxonomy_for_object_type('participating_author',EM_POST_TYPE_LOCATION); } add_action('init','my_em_own_taxonomy_register',100); ?>
and then I went to Formatting and for the Single Event Format section, I put this:
#_EVENTLINK #participating_author - #_EVENTDATES - #_EVENTTIMES
and it doesn’t show anything.
OK, I see from this page: https://wp-events-plugin.com/tutorials/using-additional-custom-taxonomies/ I’m supposed to add some code, and the instructions say “add this code, it’s that easy” but it doesn’t say where. A lot of your documentation is assuming we’re all whizzes at going under the hood in WP.
It’s not on the Single Event page though. As I noted above this is on the Single TAG page.
<a href="/author/#_TAGSLUG">All blog posts by #_TAGNAME</a> #_TAGNOTES <h4>Upcoming Events</h4> All of this author's upcoming events: #_TAGNEXTEVENTS
Yes, the link is to the Single Tag page, and I input that code on the Single Tag Page Format box under settings.
Sure thing– if you go to https://heartsthroughtime.com/events/tags/angela-quarles/
you’ll see I’m trying to add more content to the Tag Detail page by using the slug to show other content. Hover over “All blog posts by Angela Quarles” and you’ll see that the URL is using #_TAGSLUG
Forum: Themes and Templates
In reply to: [Customizr] How to make main-wrapper a fixed sizeOK, I think I have it fixed with this code:
body { margin-top: 0px; margin-bottom: 0px; padding: 30px 0px; background: url(https://tstest22.techsurgeons.com/wp-content/uploads/2015/02/testbg.jpg) repeat ; } #main-wrapper { background: #FCEBB3; margin: 0px; padding: 20px 20px; } header.tc-header { background: #8AA2AC; } @media all and (min-width: 1080px) and (max-width: 1920px) { .tc-header { width: 1024px; margin: 0 auto; } .carousel-inner { width: 1024px; margin: 0 auto; } #main-wrapper { width: 984px; margin: 0 auto; } .container { width: 984px; margin: 0 auto; } .article-container { width: 984px; } footer#footer { width: 1024px; margin: 0 auto; } .colophon { width: 984px; } footer.footer-widgets { width: 984px; } }
Now I just need to get rid of that top line above my header image…