cinek2030
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] WP-Seo by Yoast-update – PolyLang errorsI confirm. Reverting to WPSEO 1.7.1 solved the error for me. However now I have the WPSEO on the plugin update list, so I hope the problem will be fixed eventually.
Hello,
You have to edit the /plugins/q-and-a/inc/shortcodes.php file.Find the lines in the end of this file:
$searchform = ‘<form role=”search” method=”get” id=”qaplus_searchform” action=”‘ . home_url() . ‘”> <input type=”text” value=”” placeholder=”‘ . __(‘xxxxxx’, ‘qa-plus’) . ‘” name=”s” id=”qasearch” class=”qaplus_search” /> <input type=”hidden” name=”search_link” id=”qa_search_link” value=”‘ . home_url() . ‘/’ . $qaplus_options[‘faq_slug’] . ‘/search/”/> <input type=”submit” id=”qaplus_searchsubmit” value=”yyyyyy” /> </form>’;xxxxxx is the text in the search entry window (originally “Search FAQs”)
yyyyyy is the button text (Originally “Search”)Hello,
All the styling done in mu child theme’s style.css file. I haven’t touched any of the plugin files.To adjust the category title margin (assuming it uses H2 header font):
.qa-category H2 {
margin-bottom: 8px;
margin-bottom: 0.5714rem;
}To adjust the question margins (assuming it uses H3 header font):
.qa-category H3 {
margin: 0 0 4px 4px;
margin: 0 0 0.2857rem 0.2857rem;
}To disable the question underline style:
.qa-faq-anchor {
text-decoration: none;
}To add the question bullet symbol (in this case right pointing arrow):
.qa-faq-anchor:before {
content: “\21E8 020”;
}To intend the answer to the right:
.qa-faq-answer {
margin-left: 24px;
margin-left: 1.714rem;
}