Manijero.com
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] How to pre-fill a form tag with a php output?Maybe I just need to wrote a module to do it.
Let me know. I want to use and extend the flamingo plug in too.Thanks for your code, wisdom and time.
Forum: Plugins
In reply to: [Contact Form 7] How to pre-fill a form tag with a php output?Thanks.
But the flow I want to implement is:1.-Page/post within a button to contact
2.-CF7 page with form(here is where I need the Post-ID to get all the info. (just if php coding is possible inside the form, otherwise I need to pass all the data to the form) (Name of product, price, etc) )
3.- Thanks Page (Still need all the data)As you say Spaecial Mail Tags are only available when you call shortcode in the post/page). I need call it with params (post-id).
Thanks in advance
Forum: Plugins
In reply to: [Posts 2 Posts] Templates for Widgets not workingI can not change the default style and behavior, neither in child or parent.
Forum: Plugins
In reply to: [Posts 2 Posts] Templates for Widgets not workingAlso not working wp 3.8.1 for a child theme
Forum: Plugins
In reply to: [Google Forms] Chinese?Hi,
I have the same problem. My hosting services are located in Germany and there was no way to show label in Spanish(what I was looking for). Finaly I had found a solution. Add to the url of your Google form <?hl=es> for Spanish.Using your example:
[gform form='https://docs.google.com/forms/d/1jsvfXOZN5qlA0Ru3rTFYRGu-zzBA6666NduxWBhBJTo/?hl=en']
Just deactivating and activating plugin errors can be cought.
I was the problem. Sorry
Forum: Plugins
In reply to: [SendPress Newsletters] How To integrate SendPress with WPSocialLogin?itdoug,
Thanks for your reply. I’m not very familiar with wp users. The customer is trying to set up a unique db for users at the website.
As far I’d understood SendPress Stores the subscribers at it’s own tables, not as users.
Wp Social Login stores user in db as users. I’m trying to force to make a Social subscription. User is equal to contact and it’s possible to login with Social profile.Among this this all is under WPMultisite. and all users and subscribers are in one db for all the sites.
This is a wish, because I can not see any advantage to set up this for all sites in the network.
Thanks in advance.Forum: Networking WordPress
In reply to: Block off /blog/ on main siteThanks for the warning. I know it’s not the best practice but do not understand why the prefix is fixed in the main blog.
Sure there’s a reason but I can not understand it. I had to do it because the customer who is always right, can not use a domain-based multisite and appears not handle blog / in the root of permalinks.
If that data was in the database as everything else would not need hack the core.
Forum: Networking WordPress
In reply to: Block off /blog/ on main siteJust change blog for your prefix.
Forum: Networking WordPress
In reply to: Block off /blog/ on main siteIn the options-permalink.php is where is hard coded the /blog/
add_filter('admin_head', 'add_js'); include('./admin-header.php'); $home_path = get_home_path(); $iis7_permalinks = iis7_supports_permalinks(); $prefix = $blog_prefix = ''; if ( ! got_mod_rewrite() && ! $iis7_permalinks ) $prefix = '/index.php'; if ( is_multisite() && !is_subdomain_install() && is_main_site() ) $blog_prefix = '/blog';
and forward in the same file
if ( is_multisite() && !is_subdomain_install() && is_main_site() ) { $permalink_structure = preg_replace( '|^/?your_prefix|', '', $permalink_structure ); $category_base = preg_replace( '|^/?your_prefix|', '', $category_base ); $tag_base = preg_replace( '|^/?your_prefix|', '', $tag_base ); }
I’d tried and is working.