hurra03
Forum Replies Created
-
Forum: Plugins
In reply to: [Strong Testimonials] Changing The Font Colour for Name and CompanyHi – Thanks Razvan. I had a check and it seems the theme uses two style-sheets – it’s own (where I had written the code), and also the default WP one on the dashboard. I put the code there and it worked – thank you SO much!!!
Forum: Plugins
In reply to: [Strong Testimonials] Changing The Font Colour for Name and CompanyIn the theme style sheet (Croma), thank you
Forum: Plugins
In reply to: [Strong Testimonials] Changing The Font Colour for Name and CompanyI copied that into the stylesheet and it hasn’t done anything.
I also tried
.strong-view.wpmtst-default .testimonial-company, .strong-view.wpmtst-default .testimonial-name { color:#fff; }
- This reply was modified 2 years, 8 months ago by hurra03.
Forum: Plugins
In reply to: [Calculated Fields Form] Can’t see the formdone ??
Forum: Plugins
In reply to: [Calculated Fields Form] Can’t see the formIt should appear after VOICE OVER CALCULATOR
the shortcode is [CP_CALCULATED_FIELDS id=”8″]
When I look at the page code, it is’t on there. When I disable the plugin, the shortcode appears.
cache etc all cleared.
Forum: Plugins
In reply to: [WaveSurfer-WP] Problems creating a dynamic audio playerresolved
Forum: Plugins
In reply to: [WaveSurfer-WP] Problems creating a dynamic audio playersolved
Forum: Plugins
In reply to: [WaveSurfer-WP] Problems creating a dynamic audio playersee above
Forum: Plugins
In reply to: [WaveSurfer-WP] Problems creating a dynamic audio playerSorted the problem now – I changed the approach:
<div id="myplayer"></div> <script> var theDiv = document.getElementById("myplayer"), MusicName="FileName"; var teststr = '[audio id="audio_name" mp3 = "https://myluckyname.com/wp-content/uploads/2019/04/'+MusicName+'.mp3" controls download_button="true" preload = "auto"][/audio]'; theDiv.innerHTML += teststr; </script>
Forum: Themes and Templates
In reply to: [raindrops] hAtom Entries missingThanks Nobita – I will have a look a that this week.
Thanks for all your help
Forum: Themes and Templates
In reply to: [raindrops] hAtom Entries missingYes that’s right
Forum: Themes and Templates
In reply to: [raindrops] hAtom Entries missinghttps://alteregovoices.com/wp-content/uploads/2016/04/nobita.jpg
I believe I need a function similar to this:
`//mod content – use this function only if you DON’T USE Suffusion theme
function hatom_mod_post_content ($content) {
if ( in_the_loop() && !is_page() ) {
$content = ‘<span class=”entry-content”>’.$content.'</span>’;
}
return $content;
}
add_filter( ‘the_content’, ‘hatom_mod_post_content’);//add hatom data
function add_suf_hatom_data($content) {
$t = get_the_modified_time(‘F jS, Y’);
$author = get_the_author();
$title = get_the_title();
if (is_home() || is_singular() || is_archive() ) {
$content .= ‘<div class=”hatom-extra” style=”display:none;visibility:hidden;”><span class=”entry-title”>’.$title.'</span> was last modified: <span class=”updated”> ‘.$t.'</span> by <span class=”author vcard”><span class=”fn”>’.$author.'</span></span></div>’;
}
return $content;
}
add_filter(‘the_content’, ‘add_suf_hatom_data’);
`Would that work?
Forum: Themes and Templates
In reply to: [raindrops] hentry missing entriesI beleive I need a function similar to this:
//mod content - use this function only if you DON'T USE Suffusion theme function hatom_mod_post_content ($content) { if ( in_the_loop() && !is_page() ) { $content = '<span class="entry-content">'.$content.'</span>'; } return $content; } add_filter( 'the_content', 'hatom_mod_post_content'); //add hatom data function add_suf_hatom_data($content) { $t = get_the_modified_time('F jS, Y'); $author = get_the_author(); $title = get_the_title(); if (is_home() || is_singular() || is_archive() ) { $content .= '<div class="hatom-extra" style="display:none;visibility:hidden;"><span class="entry-title">'.$title.'</span> was last modified: <span class="updated"> '.$t.'</span> by <span class="author vcard"><span class="fn">'.$author.'</span></span></div>'; } return $content; } add_filter('the_content', 'add_suf_hatom_data');
Forum: Themes and Templates
In reply to: [raindrops] hentry missing entriesYes – I think you are right. You are using nickname. Could I make a change to include “author first and last name”, as well as “updated” fields?
Thank you!!
Forum: Themes and Templates
In reply to: [raindrops] hentry missing entriesHi Nobita – Yes I see that too, but when you click on hatom, in comes up with only entry-title and entry-content as values, not with author or “updated”. It is these two missing values which being reported on the https://www.google.com/webmasters/tools/structured-data page :
https://alteregovoices.com/wp-content/uploads/2016/04/nobita.jpg
Thank you
hurra03