Abhishek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website doesn’t workForum: Fixing WordPress
In reply to: get the URLHello, @billybob71a
I just check your website the way you want to be shown URL is looking like that means
(/wp-login.php?action=register)
after registration
it shows in URL after registration is
(/?register=true)if you have still a problem try to clear your browser cache and cookies and deactivate w3 total cache plugin from your WordPress.
- This reply was modified 7 years, 9 months ago by Jan Dembowski.
Forum: Fixing WordPress
In reply to: How to show latest four blog posts through MailChimp?Hello, @blogtaculous
You can only build an email form templates with Mailchimp Read the documentationForum: Everything else WordPress
In reply to: Unsubscribe only for reviews not support topicsHello, @logologics
I wanna ask you is that you want to unsubscribe for a particular feed or for all feeds you get.
If you want to disable all feeds you can use a plugin for that.https://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/
https://wordpress.org/plugins/disable-feeds/Forum: Fixing WordPress
In reply to: Header logoHello, @geissap
If you did not remember the directory path then follow instructions.
1. click on the appearance on a dashboard.
2. click on the chameleon theme option.
3. see screenshot.Forum: Fixing WordPress
In reply to: Unable to find image file name in a headerHello, @hotdogs1
I just inspect the broken image its shows wp-content/uploads/2013/08/IMAGE NAME.png
check the directory link if not get an image/logo file then it might be deleted just create and new (.png) image there with the same name, after that, you will see image on your header.
your image name shows there is (logohead1.png). so, you have to create a new logo with the same name (logohead1.png) and paste in the same directory it will fix your header logo.Forum: Fixing WordPress
In reply to: Header logohello, @geissap
I see where’s the problem and I know that to your using chameleon theme.
for changing a logo you need to go to your WordPress files then wp-content/themes/chameleon/images then their you see your logo image name in .png format. so just put new logo image there with the same name you’re having on old logo and save files.
if you wanna edit style of the logo then your able easily able to style it by additional CSS.Forum: Fixing WordPress
In reply to: Full page video background homepagehello, @courtssite you badly need tutorials for customizing the parent theme by child theme. it’s too long in the description here.
yes in function.php you have to write script code and in style.css put CSS code.
search some tutorials on it and for customizing in child theme click on links.
https://codex.wordpress.org/Child_Themes
https://wordpress.stackexchange.com/questions/306742/how-to-override-html-codes-in-wordpressForum: Accessibility
In reply to: Missing form labelplease explain me in detail your problem. I could not understand your problem you are facing in the subscription form.
Forum: Fixing WordPress
In reply to: Full page video background homepagehello,@courtssite
if you not wanna use the plugin for that then you can write code on a child theme for video background.
html code here<section id="big-video"> <div class="video" data-src="[FALLBACK IMAGE URL]" data-video="[VIDEO URL]" data-placeholder="[PLACEHOLDER IMAGE URL]"></div> </section>script code
function isIE () { var myNav = navigator.userAgent.toLowerCase(); return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false; } window.isIEOld = isIE() && isIE() < 9; window.isiPad = navigator.userAgent.match(/iPad/i); var img = $('.video').data('placeholder'), video = $('.video').data('video'), noVideo = $('.video').data('src'), el = ''; if($(window).width() > 599 && !isIEOld && !isiPad) { el += '<video autoplay loop poster="' + img + '">'; el += '<source src="' + video + '" type="video/mp4">'; el += '</video>'; } else { el = '<div class="video-element" style="background-image: url(' + noVideo + ')"></div>'; } $('.video').prepend(el);CSS code
#big-video { position: relative; background: #000; overflow: hidden; height: 582px; } #big-video .video { z-index: 1; position: absolute; top: 0; left: 0; width: 100%; height: 0; padding-bottom: 56.25%; } #big-video video { position: absolute; width: 100%; height: 100%; top: 0; left: 0; } #big-video .video-element { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-position: 50% 50%; background-repeat: no-repeat; background-size: auto 100%; }Use this code hope it will help you.
Forum: Fixing WordPress
In reply to: Add new news postsHello, @siriapade check your entire website and tell me where you see the post you were created earlier.
and please send me a link to your site because it helps me to gives you a better solution.Forum: Fixing WordPress
In reply to: Permalinks keep resetting to ‘plain’ (instead of postname)yes @svleuken I’m saying about this code in .htaccess which u just send me.
you have to overwrite .htaccess to save permalinks.
for more help check links
https://perishablepress.com/the-htaccess-rules-for-all-wordpress-permalinks/
https://www.000webhost.com/blog/fix-not-working-permalinks-in-wordpress/Forum: Fixing WordPress
In reply to: Looking for a Good RSS feed for my blog-Hello, @gary4u
yes, I got where you have a problem.click the link for instructions.
https://docs.themeisle.com/article/658-feedzy-rss-feedsForum: Fixing WordPress
In reply to: Removing links to imagesHi, Maria! yes, it is possible you can put the code for each individual page
only you need to assign a separate class for that image.Forum: Fixing WordPress
In reply to: space between boxeshello, @mindiapolis
Use this in your additional CSS you will get space between the block..front { display: block; margin-left: 56px; position: relative; min-height: 250px; }- This reply was modified 7 years, 9 months ago by Steven Stern (sterndata).