Chirag Aggarwal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove "Bizway theme powered by wordpress"You are welcome!
Forum: Fixing WordPress
In reply to: IP based Server Error 500Hi,
There could be many possible issue behind this.
You can try these two things:
1. Clear your cache and try again
2. You IP might have been blacklisted, Try Going to your cpanel-> IP Blocker and check for blocked IPsForum: Fixing WordPress
In reply to: Remove "Bizway theme powered by wordpress"You will be able to edit that from your footer.php however you can also add this code into your custom css or Style.css
.footer_bottom .copyright { display: none; }
This will not remove that but will hide it.
Forum: Fixing WordPress
In reply to: read_more button translationand, link to plugin is Loco Translate
Forum: Fixing WordPress
In reply to: read_more button translationForum: Fixing WordPress
In reply to: Need to edit "Read More" text on thumbnail!!! again sry don’t add blockquote
add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>'; }
the final one :()
Forum: Fixing WordPress
In reply to: Need to edit "Read More" text on thumbnailSry, don’t use the code above
here is the full code<blockquote>add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>'; }</blockquote>
Forum: Fixing WordPress
In reply to: Need to edit "Read More" text on thumbnailAdd this Code to your functions.php
add_filter( ‘the_content_more_link’, ‘modify_read_more_link’ );
function modify_read_more_link() {
return ‘Read More Text in your language‘;
}Don’t forget to edit Read More Text in your language
Forum: Fixing WordPress
In reply to: Unnecessary Spacing After Menu ItemsThanks for help!! that worked perfectly.
Forum: Plugins
In reply to: [Genesis eNews Extended] Using other mailerGot the Following Code:
<div class=”wrapper” style=”width:540px; margin:0 auto 80px auto; text-align:left;”>
<form class=”description” style=”padding: 3px; text-align: center; border: 0px none; font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(52, 52, 52); font-size: 17px;” action=”https://my.sendinblue.com/users/subscribe/” method=”post” onsubmit=”return false”>
<input type=”hidden” name=”hdn_email_txt” id=”hdn_email_txt” value=”” style=”font-size: 13px;”>
<input type=”hidden” name=”js_id” id=”js_id” value=”28rf6″ style=”font-size: 13px;”>
<div class=”container rounded” style=”border-radius: 4px; position: relative; margin: 0px; text-align: left; padding: 40px 20px 20px; border-width: 0px !important; border-color: transparent !important; background: rgb(252, 252, 252);”>
<input type=”hidden” name=”req_hid” id=”req_hid” value=”~NAME” style=”font-size: 13px;”>
<div class=”header” style=”padding:0 20px;”>
<h1 class=”title editable” data-editfield=”newsletter_name” contenteditable=”true” style=”font-weight: normal; text-align: left; font-size: 45px; margin-bottom: 2px; padding: 0px; margin-top: 0px; font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(35, 35, 35);”>My Newsletter</h1>
<h3 id=”company-name” contenteditable=”true” style=”font-weight: normal; text-align: left; font-size: 25px; margin-bottom: 12px; padding: 0px; margin-top: 0px; font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(52, 52, 52);”>By</h3>
</div>
<div class=”description editable” data-editfield=”newsletter_description” contenteditable=”true” style=”padding: 0px 20px 15px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(52, 52, 52); font-size: 17px;”>What type of content do you plan to share with your subscribers? </div>
<div class=”view-messages” style=” margin:5px 0;”> </div>
<div class=”email-group ui-sortable”>
<div class=”row” style=”padding: 10px 20px; font-size: 17px; position: relative;”><div class=”lbl-tinyltr” contenteditable=”true” style=”clear:both; float:none;”>Your Name</div> <input type=”text” name=”NAME” id=”NAME” value=”” style=”display:block; float:left; margin-right:3%; min-width:auto; width:400px; padding:10px 4px; border:1px solid #ccc; -moz-border-radius:4px; border-radius:4px; -webkit-border-radius:4px; font-size:13px;”> <div class=”clear” style=”clear:both;”></div> <div class=”hidden-btns”> <i class=”icon-move”></i>
<i class=”icon-white icon-trash”></i> </div> </div><div class=”row mandatory-email” style=”padding: 10px 20px; position: relative; font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(52, 52, 52); font-size: 17px;”>
<div class=”lbl-tinyltr” contenteditable=”true” style=”clear: both; float: none; font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif;”><red><font color=”#343434″>Your Email</font></red></div>
<input type=”text” name=”email” id=”email” value=”” style=”padding: 10px 4px; width: 400px; min-width: auto;”>
<div style=”clear:both;”></div>
<div class=”hidden-btns”>
<i class=”icon-move”></i></div>
</div>
</div>
<div class=”byline” style=”font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(52, 52, 52); font-weight: bold; font-size: 17px; text-align: center;”>
<button class=”button editable ” type=”submit” data-editfield=”subscribe” contenteditable=”true” style=”font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif; color: rgb(255, 255, 255); display: inline-block; white-space: nowrap; min-height: 40px; margin: 0px 5px 0px 0px; padding: 0px 22px; text-decoration: none; text-transform: uppercase; text-align: center; font-weight: bold; font-style: normal; font-size: 14px; cursor: pointer; border: 0px; border-radius: 4px; vertical-align: top; height: auto; line-height: 150%; background: rgb(5, 5, 5);”>Subscribe</button></div>
<div style=”clear:both;”></div>
</div>
</form>
</div>Forum: Themes and Templates
In reply to: How to use ConditionsHi,
That worked perfectly. Thankx a lotForum: Themes and Templates
In reply to: How to use ConditionsWindow width
Forum: Fixing WordPress
In reply to: How to use Genesis eNews with these mailersthank for info, james.
Forum: Themes and Templates
In reply to: How to use ConditionsHi bhdzllr,
I have no experience with javascript so can you please tell me full script which should say that if width < 50%
then .enews-widget should be removedtill now what I am able to find is
document.getElementById("half").style.display="none"
but how to make that only work when width<50%
Forum: Themes and Templates
In reply to: [Customizr] I want to show my website like a blog!I got the solution, Thanks to those who thought to help me!