Ma San
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Commenters don’t receive E-MailsHey,
yes, there is exactly one subsciption (probably because i did not have the plugin before!), and the last column on the right is saying “all comments”.
On StCR there is also an alert from WP Mail SMTP v2.2.1 plugin saying:
Mailer: Other SMTP-Connection
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/TroubleshootingRegards
MaSanand thanks again for helping….
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Commenters don’t receive E-MailsHi,
first of all, thank you so much for answering and offering your help. I followed your instructions to install the WP Mail Logging plugin. After that, I wrote a test comment and also answered to that test comment. Neither an e-mail shows up at my email account nor do I see any logs at WP Mail Logging plugin.
Due to my research I installed WP Mail SMTP plugin the day before your answer. Whithin that plugin you can send a test e-mail (NOT a test Comment), which I did. It did not show up at my e-mail account, but it shows up at WP Mail Logging plugin now. If I click on “Mistake” it says: SMPT connect failed.
I hope this helps
Kind regards
MartinForum: Themes and Templates
In reply to: [Tracks] White backgroundHey,
I implemented the following three codes from above into my css:
body,
.main,
.excerpt,
.menu-primary-items ul {
background: white !important;
}
.excerpt-container {
background: #e5e5e5 !important;
}
#site-header {
background-color: white;
}
#menu-primary-items a,
#title-info a {
color: #000;
}.site-description,
.entry-title,
.entry-title a {
color: #000 !important;
}.site-footer,
.sidebar-footer,
.design-credit {
background: white;
}There are two things now:
– The pages, for example “about me” does not Show up as it is probably White as well (https://www.ma-san.de/)
– the Header is still black
I would be very grateful if you could provide a sulution for this.
Kind regards from Berlin, Martin
Forum: Themes and Templates
In reply to: [Tracks] White backgroundThank you !!!!
Forum: Themes and Templates
In reply to: [Tracks] White backgroundWow, this looks exactly how I want it. Thank you very much! The only thing…the subtitle of the main page and also the “Naming” of the pages disappear as well…
on my website (www.ma-san.de) the sentence “Ein Blog über Reisen, L?nder, Bücher und vieles mehr – meine Gedanken über diese Welt” and also the Page naming “über mich” are not visible in the white version. Is their a way to keep their color the same then the Title, in this case “Ma San Blog” ?Forum: Themes and Templates
In reply to: [Tracks] White backgroundThank you so much, sometimes it’s much easier then it seems (-:
However, what happens when I embed this code, everything becomes white, also the “normaly” light grey article boxes (next to the articles head image). Is it possible to leave these article boxes light grey (as they are on the black webiste option)? Also when you scroll over them, It would be great if they don’t become white (as the framing of the box becomes lost with the white background), could it be another gray tone for this?
Kind regards, Martin
Forum: Themes and Templates
In reply to: [Tracks] White backgroundHi,
First of all, thank you for that great theme,it’s an amazing desktop for my blogging website, I love it !
I just tried to embed that code into custom CSS, to get a white background, but somehow it doesn’t work. I am a total beginner in this, so , sorry!
However, I was thinking to show you how I implemented the code into custom CSS, maybe you can tell me what’s wrong here…Once I did this, the website did not work all all….ooooopps….here’s the code: I placed it directly after custom css:
/***** Custom CSS *****/
body,
.excerpt,
.main,
.menu-primary-items ul {
background: white !important;
}
#site-header {
background-color: white;
}
#menu-primary-items a,
#title-info a {
color: #000;
}
// section
$wp_customize->add_section( ‘ct-custom-css’, array(
‘title’ => __( ‘Custom CSS’, ‘tracks’ ),
‘priority’ => 80,
‘capability’ => ‘edit_theme_options’
) );// setting
$wp_customize->add_setting( ‘ct_tracks_custom_css_setting’, array(
‘type’ => ‘theme_mod’,
‘capability’ => ‘edit_theme_options’,
‘sanitize_callback’ => ‘wp_filter_nohtml_kses’,
) );
// control
$wp_customize->add_control( new ct_tracks_Textarea_Control(
$wp_customize, ‘ct_tracks_custom_css_setting’, array(
‘label’ => __( ‘Add Custom CSS Here:’, ‘tracks’ ),
‘section’ => ‘ct-custom-css’,
‘settings’ => ‘ct_tracks_custom_css_setting’,
)
) );