Deganit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 reCAPTCHA Extension] contact form 7 + recaptcha not workingSame here – form works without recaptcha,but with it I keep getting the “Sadly, there was an error trying to send your message. Please try again later.” with orange box…
PLEASE HELP!!!
- This reply was modified 9 years, 1 month ago by Deganit.
cool.
you should know most paid pop-up plugs have thisGood luck đ
looks ok.
still, would have loved to have more flexibility here but it looks ok for now.hello again,
any news?
since u asked me to leave the code in I can’t launch my website (it looks bad). PLEASE get back to me ASAPHi,
sadly it’s not working- This reply was modified 9 years, 1 month ago by Deganit.
O gosh, that is WAY too complicated for me…
Hope you will change it soon.Hi Bojan,
thanks for getting back to me so quickly!
So here is my website- http://dpositiveimpact.com/
Here is the optin – https://www.dropbox.com/s/abcmxah5shdewqu/optin_b4.png?dl=0
and here is the success – https://www.dropbox.com/s/7c6crr8q811r24r/optin_after.png?dl=0As you can see I implemented some CSS to make it look more like how I wanted it to.
I know these changes made the box bigger, but even without these changes (i.e. the default state) the success copy is too small for its box… and I don’t see any options to change the font size or the box size…Let me know if you need more info
D
Forum: Fixing WordPress
In reply to: How to Get Posts on a Specific PageI take it back đ
It is not working đForum: Fixing WordPress
In reply to: How to Get Posts on a Specific PageOk, so this is what i did in the clearest way i could write it. It worked for me… (and in case it changes something – i have Genesis installed) Anyway i hope it helps.
1. Create a new page
2. Under template change to Blog
3. If you do not have a âcustom fieldsâ block visible, then go up on the screen to your right Under âscreen optionsâ check the âcustom fieldsâ
4. Then scroll down to the âcustom Fieldsâ click on âEnter newâ (which is a little blue text link above the âadd a New custom fieldâ option) Under Name write â Query_args â and under Value add the value of your desired category (which you can find by going to the categories page and putting your mouse over the category. When doing so you will see on the lower left of the screen a line of code, look for this part â â Category&tag_ID*&â You need the symbol replacing the *- once you created it you will see the option for âQuery_argsâ now appears in the drop down to the left so no need to âenter newâ anymore, you can go right ahead and âadd a New custom fieldâ)
5. Now add them via menus to whichever menu you want.
6. In order to add an image and control the length of the text go to your âTheme Settingâ under âContent Archiveâ you will find the a drop down, choosing the 1st option of âDisplay Post Contentâ will allow you to limit the number of characters on each post. Choosing the 2nd option âDisplay Post excerpts will allow you display the featured images. You should also check the box forâ Include the Featured Image?â and set the display size and Navigation TechniqueForum: Fixing WordPress
In reply to: A page showing only posts from 1 category?Not sure what you are looking for…
I was looking for a way to create a page that will show all the posts under the same category with their image, some text and a “read more” option that leads to the original post. Still haven’t found how to do that. But what i have found is a way that combines what vtxyzzy offered – that created a link AND Content Archives settings i had in my child theme to add the relevant thumbnail to each link… would this work for you?Forum: Fixing WordPress
In reply to: How to Get Posts on a Specific Pagei managed to create a page that shows thumbnails with title from the same category but not a posts list… đ this seems like a trivial thing yet i found no answer so fur
Forum: Fixing WordPress
In reply to: A page showing only posts from 1 category?thank you!
o im sorry…. my bad.
here – http://pastebin.com/r7Y7nw1BHonestly… I am a little afraid of crashing my site again…
So just to be clear, this is what you say i need to do:
A. install widget
B. activate widget
C. post the code at the end of my PHP (here is a link to it http://pastebin.com/Z1LwM10r)Did i get it right?
Hello
thank you so much for getting back to me so fast! I a wouldnt be surprising if this is all my doing… i am very very very new to PHP..as for your quetiones –
Yes that’s exactly what i used like so :This was the end of my functions.php:
return sprintf( '[footer_copyright before="%s "] | [footer_childtheme_link before=""] %s <a href="http://thepixelista.com">%s</a> | %s [footer_genesis_link url="http://www.studiopress.com/" before=""]', __( 'Copyright', 'innovative' ), __( 'by', 'innovative' ), CHILD_THEME_DEVELOPER, __( 'Built on the ', 'innovative' ) ); return $output; }and this is where i added this code you recommended:
add_filter( 'the_content', 'add_related_posts_after_post_content' ); function add_related_posts_after_post_content( $content ) { //check if it's a single post page. if ( is_single() ) { // check if we're inside the main loop if ( in_the_loop() && is_main_query() ) { // use your own shortcode attributes here $shortcode = '[related_posts_by_tax posts_per_page="4"]'; // add the shortcode to the content $content .= do_shortcode( $shortcode ); } } return $content; }so fur it was all ok and on page i got a text link to a related post. But then i wanted to add a thumbnail so i went back to the functions.php and just pasted the PHP code to see how it looks and what/where should i change it. I think this is how it looked like at this point:
add_filter( 'the_content', 'add_related_posts_after_post_content' ); function add_related_posts_after_post_content( $content ) { //check if it's a single post page. if ( is_single() ) { // check if we're inside the main loop if ( in_the_loop() && is_main_query() ) { // use your own shortcode attributes here $shortcode = '[related_posts_by_tax posts_per_page="4"]'; [related_posts_by_tax posts_per_page="6" format="thumbnails" image_size="medium" columns="2"] // add the shortcode to the content $content .= do_shortcode( $shortcode ); } } return $content; }I took a look at the website to see if something has changed and this is where i lost all access…
all i want it to do is show 3-4 thumbnails + titles from the same category under every post.
What did i do wrong?D