-
Posted a reply to Error on Multisite Configuration, on the site WordPress.org Forums:
Hi, I'm glad you were able to fix this. Thank you for posting the update,… -
Posted a reply to backend maintenance mode?, on the site WordPress.org Forums:
Hi, I'm glad it helped. Thanks for the update! Pavel -
Posted a reply to Finding pages in the current site, on the site WordPress.org Forums:
For WordPress multisite - yes, it returns pages for the current site. -
Posted a reply to Finding pages in the current site, on the site WordPress.org Forums:
Hi, Not sure if I properly understand what you're trying to build, but switch_to_blog() function… -
Posted a reply to No roles available in a single networked site, on the site WordPress.org Forums:
I'm glad that you were able to figure that out! Thank you for posting your… -
Posted a reply to MYBB zingiri forum help, on the site WordPress.org Forums:
Hi, This plugin should meet your requirements regarding accounts sync between WordPress and MyBB: https://wordpress.org/plugins/mybbsync/… -
Posted a reply to facebook count page likes, on the site WordPress.org Forums:
Hi, You're not getting any data from Facebook FQL, as it is deprecated in the… -
Posted a reply to Error on Multisite Configuration, on the site WordPress.org Forums:
Hi, Where these subdomains are pointed in DNS settings? Usually that problem happens when subdomains… -
Posted a reply to Wait to load page wp-json, on the site WordPress.org Forums:
Hi, Usually this happens due to the big number of posts on your website. I… -
Posted a reply to Network with unique problem, on the site WordPress.org Forums:
Hi, Could you please copy the error text that you were getting? Also, your .htaccess… -
Posted a reply to No roles available in a single networked site, on the site WordPress.org Forums:
Hi, Looks like options database somehow got corrupted during the installation. Probably the easiest way… -
Posted a reply to Product Catalog pluing with list-display, on the site WordPress.org Forums:
Hi, Looks like this one might be helpful for you: https://wordpress.org/plugins/woo-quick-order-table-view/ Thanks, Pavel -
Posted a reply to Need a little help, on the site WordPress.org Forums:
Hi, Looks like you need Pagination. There are several ways to add it to your… -
Posted a reply to Content:encoded, on the site WordPress.org Forums:
Hi, I don't know if this is still actual, but I think these two links… -
Posted a reply to Footer text adjustment, on the site WordPress.org Forums:
Hi Helen, It should be somewhere in theme settings I believe, I'm not familiar with… -
Posted a reply to How to Show Different Prices For Logged In users and visitors?, on the site WordPress.org Forums:
Hi, It looks like this plugin does exactly what you need. Please check and let… -
Posted a reply to $user->set_role() has no effect, on the site WordPress.org Forums:
Hi, Try to use $user->add_role( 'author' ); instead. And then you can remove subscriber role… -
Posted a reply to Z-Index Issue: Navigation Menu’s Sub-Items in Drop-Down Menu, on the site WordPress.org Forums:
Sorry, but looks like it's not going to work with z-index, because these are inline… -
Posted a reply to custom post type in code, on the site WordPress.org Forums:
How you would handle several images for one post in this case? -
Posted a reply to custom post type in code, on the site WordPress.org Forums:
the full code should look like this then: function wp_modify_uploaded_file_names($image_name) { // Get the parent… -
Posted a reply to backend maintenance mode?, on the site WordPress.org Forums:
Hi, Looks like this plugin should meet your needs: https://wordpress.org/plugins/content-freeze/ Please let me know if… -
Posted a reply to Problem with Tags on blog articles, on the site WordPress.org Forums:
Hi, Please provide code from the tag.php file which your theme uses, if there are… -
Posted a reply to custom post type in code, on the site WordPress.org Forums:
Hi, Could you please provide more details here? Do you need this image name change… -
Posted a reply to Z-Index Issue: Navigation Menu’s Sub-Items in Drop-Down Menu, on the site WordPress.org Forums:
Hi, You'll need to remove or override .nav li z-index rule, which now set to… -
Posted a reply to register_rest_field update_callback not work, on the site WordPress.org Forums:
Are you sure that slug_update_servicos() gets the arguments you're checking and using in it? Can… -
Posted a reply to Некорректное отображение полей формы отзывов в теме artificer от woothemes., on the site Форумы поддержки:
Здравствуйте, Здесь поможет базовое css: .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .form-submit { float: left; display:… -
Posted a reply to Как снять затемнения в Slider Revolution, on the site Форумы поддержки:
Попробуйте через css: #rev_slider_2_1_wrapper .tp-revslider-mainul>li .slotholder { background: none !important; } #rev_slider_2_1_wrapper .tp-revslider-mainul>li .slotholder .defaultimg… -
Posted a reply to WordPress и большая бд, on the site Форумы поддержки:
Здравствуйте, Под настройками чтения как я понимаю подразумеваются "Visibility: Public/Private"? Эти поля должны показываться вне… -
Posted a reply to Локализация сайта, on the site Форумы поддержки:
Здравствуйте, Посмотрите в сторону этих плагинов: http://www.wordpress.org/plugins/polylang https://wpml.org/ Они позволяют добавлять контент на разных языках… -
Posted a reply to Expiring Announcements on a Church Site, on the site WordPress.org Forums:
Hi, I did a quick search for existing plugins and I'm afraid there's no ready-made… -
Posted a reply to How do I add this functionality to my site?, on the site WordPress.org Forums:
Hi, You'll need to organize your content by taxonomies and then filter search results based… -
Posted a reply to Facebook follow button not displaying, on the site WordPress.org Forums:
Hi, It seems like a wp.com related question. Could you please confirm? If so, it… -
Posted a reply to Where to put code for second DB connection?, on the site WordPress.org Forums:
You're welcome! :) -
Posted a reply to Where to put code for second DB connection?, on the site WordPress.org Forums:
I think you don't need quotes in wpdb query, so instead of this: $second_db =… -
Posted a reply to Password : email notification, on the site WordPress.org Forums:
Hi, You can do this via the filter hook password_change_email. Below you'll find an example… -
Posted a reply to Podcast Feed Plugin, on the site WordPress.org Forums:
Hi Greg, Yes, it's possible and can be done quite easily. What you need is… -
Posted a reply to Where to put code for second DB connection?, on the site WordPress.org Forums:
In wp-config you can set defines. They will be accesible everywhere without needing to use… -
Posted a reply to Change WP search query, on the site WordPress.org Forums:
Hello, It could be done with the following code: function search_url_rewrite () { if (… -
Posted a reply to “WP_JSON” causing over 10 seconds of page load time, on the site WordPress.org Forums:
Hi, You can try to disable REST API to see if it helps: https://en-ca.wordpress.org/plugins/disable-json-api/ Thanks -
Posted a reply to force comments and post to be uppercase, on the site WordPress.org Forums:
Hi, You can use strtoupper php function and hook to get_comment_excerpt probably to filter comment… -
Posted a reply to Assign 6 digit sequential member number to role upon registration (not $user_id), on the site WordPress.org Forums:
Hi, It's quite easy from the developer's standpoint, but you'll need understanding of PHP and… -
Posted a reply to register_rest_field update_callback not work, on the site WordPress.org Forums:
Hi, Are you sure that your callback function gets called? Can you try to put… -
Posted a reply to Where to put code for second DB connection?, on the site WordPress.org Forums:
Hi, Yes, it should be okay I think, though it'll be a good idea to… -
Posted a reply to Plugin to append URL+ featured image when copied and pasted to another site, on the site WordPress.org Forums:
What you see there - is the data grabbed from Open Graph tags on the… -
Posted a reply to REST API, on the site WordPress.org Forums:
Hello, REST API was introduced in 4.7 release, so it should be available for you… -
Posted a reply to Use different header for different language, on the site WordPress.org Forums:
Hello, You would have to code that I think. Polylang has pll_current_language() method which returns… -
Posted a reply to User based review Plugin, on the site WordPress.org Forums:
Hello, Please check Business Directory Plugin. Demo located here. Seems to fit your requirements. Thanks -
Posted a reply to Slideshow Option Missing, on the site WordPress.org Forums:
Hello, This might be related to quite popular confusion between .com and .org, as there's… -
Posted a reply to Plugin to append URL+ featured image when copied and pasted to another site, on the site WordPress.org Forums:
Hello, How do you want to add an image into that text piece? Would it… -
Committed [1401239] to Plugins SVN:
updated tested version number