ccarlow
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: changing email services / subdomain / new domainthank you, I’ll look into this more. Thanks for the verbage – always helpful to know the correct words to describe such things.
sorry it’s working. I needed to do an upgrade to the Mailpoet 3 plugin
resolved? How? Whats the answer. I’ve updated an still get the same as everyone on this chain.
Forum: Fixing WordPress
In reply to: [box] not converting to a boxed area on viewed pageOk Thx Steve!
Forum: Fixing WordPress
In reply to: [box] not converting to a boxed area on viewed pageI misunderstood, sorry Steve
I don’t know what to do with this code you wrote
<div class=”box”>Your text here</div>
is this what you perceive as the box code?
basically when I enter the edit view – text panel I just see – [box]And that’s my story and I’m sticking to it![/box]
not div tags
should I replace the div tag references with the [box] and [/box] code references?Forum: Fixing WordPress
In reply to: [box] not converting to a boxed area on viewed pageThanks for the reply Steve. My problem is that when I changed my theme I was left with all these [box] code pieces throughout my website pages – they don’t resolve into a nice looking colored box around text – they simply appear on the page as this –>[box]text[box].
What can I do to restore the box appearance without having to go to each page and edit the code individually? Anything?
It’s a lot of work and I guess I’m looking for some quick fix.
Forum: Hacks
In reply to: how to change site title for different pages with cssOK I thought I was getting close: I decided to try an make a mod to the header.php to switch out the subtitle depending on what page template is being used on a page. I feel I’m close but it doesn’t resolve. I don’t know php and I’m taking a shot in the dark here.
Any tips on the code below to get it working?
// code inside header.php <header id="header" class="col-full"> <!-- my mod to alternate subtitle for courses --> if ( is_page_template( 'my-full-width-template.php' ) ) { // use alternate subtitle when the above template is used <div ID="my-subtitle" style="color: white; text-shadow: 1px 1px 0 #0B2B0E; font-size: 22px">Online Courses</div> } else { // use the usual subtitle text saved in the canvas > hook > header below <?php woo_header_inside(); ?> } </header>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]
Forum: Hacks
In reply to: how to change site title for different pages with cssOK So I get it – CSS for appearance and templates for content. I have a different page template selected for the alternate pages I want to use an alternate subtitle on. When I edit this template I see code i.e. get_header (). I’m not sure what to do but I’m going to ask if this makes sense: I need to change this get_header () code so it pulls in a different header with the alternate subtitle? Does that sound right and if so how do I change that code? Do I add a reference name to an alternate header.php page between the parenthesis ()?
As a second method I’d like to ask this – I use woothemes canvas and I have a subtitle div tag in a hook through the dashboard > Canvas > hooks – I’d like to keep the control and organization of this alternate text there. I believe I can only enter html code and not php (I’m not sure) so my question is – can I enter 2 different subtitle div lines and unique selectors and then use some rule to make a choice between the subtitles depending on if the alternate-page-template is used or not? I can create the unique selector and add css code i.e. ::before or :: after but how would I make a rule? If this is possible I’d like to do this second method to keep access to these subtitles through the canvas hook and use page templates per alternate page but I just don’t understand how to create a rule.
Below I listed my subtitle and its alternate below it which is saved in the canvas > hook – Executed at the top, inside the #header DIV tag:
<div ID=”my-subtitle” style=”color: white; text-shadow: 1px 1px 0 #0B2B0E; font-size: 18px”>A holistic acupuncture and wellness center serving the Coventry / Rhode Island area since 2005.</div>
<!– alternate subtitle –>
<div ID=”my-alt-subtitle” style=”color: white; text-shadow: 1px 1px 0 #0B2B0E; font-size: 18px”>Online Courses</div>Forum: Hacks
In reply to: how to change site title for different pages with cssBecky Davis – I’m not clear on your body class and template suggestion.
In Canvas, as a hook, I am able to add subtitle text to appear below the Logo image (https://natureshealing.info).Are you suggesting I can create an ID in the div tag <div class=”switch-subtitle”><h2>Original Subtitle</h2> and then the subtitle that appears will depend on the template set for that page?
How would I set css code to determine which template is being used?
Using a template so that when a new page comes along I can simply set the template for that page that will carry the alternate subtitle but I’m not sure how to identify the template from css/styles.css.
Forum: Hacks
In reply to: how to change site title for different pages with cssHi Becky,
As I think about it, I just need to able to change the subtitle text.
Nature’s Healing – Tital
Acupuncture and Herbal Medicine – subtitleBut on my online courses page views I wanted to change the subtitle to
Nature’s Healing
Online Courses (subtitle changes)Changing the title would be confusing but changing the logo image could work as well.
Forum: Hacks
In reply to: How to make a 2 column div in a WP post that is alphabetizedAlright – I got it setup. It’s a little uneven – the separate listings aren’t listed exactly side by side because some listings are longer than others and some sections get skipped but it kind of works. I need to play with it more.
Forum: Hacks
In reply to: How to make a 2 column div in a WP post that is alphabetizedthanks everyone! Ancawonka, I think I’ll give connections a try.
Forum: Hacks
In reply to: How to make a 2 column div in a WP post that is alphabetizedThanks for your reply Ancawonka!
Yes I need help with some kind of code that formats an existing list into 2 columns and also alphabetize the list based on a persons last name.
The referral list is here: https://risaom.org/referral-list/
It contains basically names and addresses. My hope is to make it easy to format and update.
Format meaning – putting the list into 2 columns and alphabetize it like this pattern below
A B
C D
E F
and so onI would like to make the list easy to update…It would be great if I can edit a word post and just simply add a new name/address to the bottom of the page code and have custom code that would alphabetize it so i don’t have to alphabetize it manually and re-adjust the columns to make the name/address fit.
I’d like to alphabetize on the last name or some hidden number scheme.
If you have any ideas or even alternative thinking that can streamline the updating process. That would be helpful.
Forum: Fixing WordPress
In reply to: Different color in footer/sidebar widgetOK I gave it a try but I can’t figure it out.
I made a child theme. That’s understood and not a problem.
The problem is I can make changes in firefox>inspector and they show up but I can’t copy what I am seeing in the inspector to the child-theme style.css (style sheet).
I changed my focus a bit. I want to edit the background of the H1 tag for the article heading.
–>web address: https://testsite.natureshealing.info/food-allergy-vs-food-intolerance/
–>Article heading code – <h1 class=”title entry-title”>Food Allergy vs Food Intolerance</h1>Under the inspector>rules I add the background color
.page-title, .post .title, .page .title {
font: bold 28px/1.1em ‘Philosopher’, arial, sans-serif;
color: #222222;
–>background: #009a9a;Now I see a blue rectangular background
What do I paste in my style sheet to control the background-color of this H1 element????
The problem that makes me confused is this – The class is different from what is in the inspector>rules
Here’s the class code –>h1 class=”title entry-title”Here’s the inspector code I see
–>.page-title, .post .title, .page .titlethey are different and I don’t understand
Can you help?Forum: Fixing WordPress
In reply to: mixed content trying to secure ssl on checkoutThanks for your reply Digico Paris
To your last comment
“The important is, you have no warning in browser and you see the good “green” canvas icon – showing most of the content is well encrypted and authenticated. “This is my big concern – I do not get a green lock icon. I get a grey lock with a yellow triangle of caution. When I click on the icon I get a message that says “CONNECTION IS NOT SECURE”
By viewing the checkout page as I describe I can see it in the firefox browser.
Also there is only 5 issues being identified in the google chrome console telling me what is coming up that is not secure. 4 of the issues are these silly google font links that I was hoping to find a change for.