malevolentia
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] No forms sends, cant press submit buttonIt still doesnt work?
Forum: Plugins
In reply to: [Contact Form 7] No forms sends, cant press submit buttonI use a lot of plugins and the theme is kind of self built.
But never had this issue before?Forum: Plugins
In reply to: [Contact Form 7] No forms sends, cant press submit buttonForum: Plugins
In reply to: [Contact Form 7] No forms sends, cant press submit buttonIs it possible to send URLs privately so it doesnt show up here?
- This reply was modified 2 years, 7 months ago by malevolentia.
Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Plugin not workingDid the changes to wp-config.php
And still nothing happens when I click the Submit button for the form. Its not possible to press the button even.And nothing shows up in the debug file now either.
Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Plugin not workingHi again!
Yes its showing Active Auth!
I tried to deactivate and activate again and still doesn’t work. No settings has been changed and nothing in the Excel sheet.Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Plugin not workingHello!
Same error for me after updating the plugin. All the settings are exactly the same as before but nothing happens when we try to submit the form.
What can I do to fix this?Thanks a lot! I never used that one before and I think it listed more than 10 earlier. But now it works! ??
I have the same issue, it only displays 10 posts for me while using this shortcode:
[display-posts wrapper=”div” tag=”rescuebygge” image_size=”thumbnail” include_excerpt=”true” excerpt_length=”80″ excerpt_more=”Forts?tt l?sa →” excerpt_more_link=”true”]
Forum: Fixing WordPress
In reply to: Custom Poste Archive Page adds “Page 1” in bread crumbHello!
Thanks for answering!
Yes I looked at the code but i just want to change this on ONE single page. It’s correct on all other pages ?? I really can’t find a solution to change breadcrumb on a page, one exception.
Forum: Plugins
In reply to: [Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] Feed on mobileOh! I feel so silly now, that was really easy and I really tried finding the answer before posting here, sorry and thank you for your quick answer! ??
Forum: Plugins
In reply to: [Contact Form 7] Yahoo error, emails does not send?
Forum: Plugins
In reply to: [Contact Form 7] Yahoo error, emails does not sendAny help to get in this matter?
Forum: Plugins
In reply to: [Page-list] Use subpages_ext with part of content?Thank you so much! ??
Is it a way to decide how long the excerpts/content will be? Like exact amount of words etc. And can it include an image posted in the content?
Forum: Fixing WordPress
In reply to: Getting sidebar/widget to display horizontallyJust want to share the solution I came up with, maybe it will help someone!
This will only work on Bootstrap based themes like mine though.
When you have added the sidebar to the functions.php file:
register_sidebar( array(
‘name’ => __( ‘SIDEBAR NAME’),
‘id’ => ‘SIDEBAR ID’,
‘before_widget’ => ‘<div class=”col-sm-3″>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3 class=”WIDGET TITLE CLASS”>’,
‘after_title’ => ‘</h3>’,
) );
}Just simply add the bootstrap squares to be displayed before and after widget – <div class=”col-sm-3″> Widget content will be here </div>.