patternreplicas
Forum Replies Created
-
It worked. Thank you for all the support. I’ve been persistent in the last days and you didn’t quit me. Praise you.
One last thing that you may be able to help with on this subject: Is there a way to automate/sustain these changes? No filters previewed in the near future so I can add this to the child-theme instead? Any other options?
That was the one address. And you replied already, to nomadalti
I’m glad I could contribute with this.
cheersCan you give me a clue of where I would have to insert the html?
I’ll look into it.
Thanks for being there.Done. Sent to the support email address.
thank you!Forum: Themes and Templates
In reply to: [Virality] Collapse-O-Matic content box don't respondResolved
Interesting. I also created a draft post to test it. The image is present in the featured image section on editing the post, and when I click on it, it takes me to the media library, where it is also present. But when I close it and reopen the media library, the image is not there in between the rest of the images. I need to go back to editing the post in order to see it.
I published the post and it didn’t change the above.Hi Jose! Thanks for dropping by!
I found my way with Poedit. I’m already translating a plugin and so giving it a first try.I’m having a hard time to find my way on customizing different features and so adjust the plugins to my website’s needs. I guess the best way to do that is through the functions.php file in a child-theme, right? I find a recipe here and there that occasionally works for what I need but that takes a long time. I would prefer to understand better how it works so I can find the solutions myself. Do you know a way, or a guide, that can help me get started? Or I just have to dive into learning PHP from bottom up and there’s no shortcut?
Forum: Plugins
In reply to: [Comment Form Shortcode] WP 4.0 incompatible?It shows for me. But I wasn’t able to make it show in the conditions I needed: not show in the default position but only where I inserted the shortcode.
Forum: Plugins
In reply to: [Visual Form Builder] Some emails are never receivedTesting the plugin in my localhost. There are entries in the plugin data base but no email was sent; neither notification or confirmation emails.
Is this a requisite of the Pro version?Forum: Plugins
In reply to: [Visual Form Builder] Where do I find the shortcodes for the forms?found it. Seems like [vfb id= 1] is the shortcode for the first form we create.
I had 2 links set in that parameter, Tara. The problem was that ONLY THE LINKS were not being posted. Just the text was showing, when I approved the comments.
Anyway, It’s working fine now. I have no idea how come.
Great that it is working for you too : )
About “breaking the websites when the plugin gets updated”, all you have to do is create a child-theme and add these changes there instead of in your theme’s folder. It was one of the first things I did, it’s very easy and everyone in any forum post seems to be sure it’s the best way for not having trouble when plugins, or the theme itself, updates.How does it work?
In my case, I am trying to change the permalinks structure and experimenting plugins that can automatically redirect them. I guess it’s not just a matter of reloading and “Tcharaaan!”, right? I mean, no results here. Maybe I’m missing something?
I’m in my localhost.I found a similar situation in a site from a similar plugin an tried the solution suggested there. It worked here. I have no idea if it can affect the results in any other undesired way, but at least it doesn’t display the current post in rpwe.
Here’s what I applied:
add_filter( 'rpwe_default_query_arguments', 'rpwe_exclude_current_post' ); function rpwe_exclude_current_post( $args ) { if( is_singular() && !isset( $args['post__in'] ) ) $args['post__not_in'] = array( get_the_ID() ); return $args; }
taken from this location
Any feedback is very much appreciated, in case you try this or find a better solution.