sakarya
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] Check user status from another systemyes, it works..
Forum: Plugins
In reply to: [Simple Membership] Check user status from another systemI used swpm_before_login_request_is_processed hook. I activated the membership in your plugin when you signed up for wordpress. If API status is true I create the user with wp_create_user function.
Forum: Developing with WordPress
In reply to: Uploading Picture in Custom PanelAdded this js code admin panel. Now, it works..
function option_js() { echo "<script type=\"text/javascript\"> jQuery(function($){ $(document).ready(function() { $('#logo_image_url').click(function() { var logo_imag = wp.media({ title:'Logo Se?', library: {type: 'image'}, multiple: false, button: { text: 'Ekle'} }); logo_imag.on('select', function() { var logo_selection = logo_imag.state().get('selection').first().toJSON(); for(prop in logo_selection){ console.log(prop); } $('#firma_logo').val(logo_selection.url); }); logo_imag.open(); }); }); }); </script>"; } add_action('admin_head', 'option_js' );
Forum: Fixing WordPress
In reply to: Always Open Home PageI did all that you said.
I found the problem. I made the theme myself. I canceled the embed values. When I saw something called disable_embeds_rewrites in the log, I removed them.
Now it works properly.
I have not understood why the system running for 1 month now gives such an error.
Logs are not on record except today.
Thanks..
Forum: Plugins
In reply to: [Redux Framework] can't get valueshttps://dagobah.net/flash/thank_you.swf
Thanks a lot ??Forum: Themes and Templates
In reply to: Custom Post Type Custom Taxonomy Term Templateif I add custom taxonomy to posts it works, if I add it to custom post type, it doesn’t work.
Forum: Themes and Templates
In reply to: Custom Post Type Custom Taxonomy Term Templateany idea?
Thank you @jumbo.
Register before paying, how can I do it? How can I control this.
Forum: Fixing WordPress
In reply to: A CSS Problem with wp_list_categoriesOh yesss. Thanks alchymyth..
Forum: Fixing WordPress
In reply to: A CSS Problem with wp_list_categoriesCategory Listing Code;
<?php $cat = get_query_var('cat'); wp_list_categories('child_of='.$cat.'&title_li=&show_option_none=&depth=0'); ?>
Forum: Fixing WordPress
In reply to: A CSS Problem with wp_list_categoriesCan i check, it’s a main category or sub-category?
Forum: Fixing WordPress
In reply to: A CSS Problem with wp_list_categoriesURL with sub-categories: https://connect16.com/firma/alisveris/
URL without sub-categories: https://connect16.com/firma/alisveris/alisveris-merkezleri/if the category doesn’t have a sub-category, becomes an empty place under the category title.
How can i remove it?
Thanks.
Forum: Fixing WordPress
In reply to: wp_list_categories HackI realy need luck.
Forum: Fixing WordPress
In reply to: Categories with images and sub-categoriesForum: Fixing WordPress
In reply to: Categories with images and sub-categoriesAny idea?